fromMap static method
- Map<
String, dynamic> ? map, { - EnumMethod? enumMethod,
Gets a possible NotificationReceivedResponse instance from a Map value.
Implementation
static NotificationReceivedResponse? fromMap(
Map<String, dynamic>? map, {
EnumMethod? enumMethod,
}) {
if (map == null) {
return null;
}
final instance = NotificationReceivedResponse(handled: map['handled']);
return instance;
}