NotificationChannelStrategy.fromJson constructor
NotificationChannelStrategy.fromJson(
- Map json_
Implementation
NotificationChannelStrategy.fromJson(core.Map json_)
: this(
notificationChannelNames:
(json_['notificationChannelNames'] as core.List?)
?.map((value) => value as core.String)
.toList(),
renotifyInterval: json_['renotifyInterval'] as core.String?,
);