NotificationChannelStrategy.fromJson constructor

NotificationChannelStrategy.fromJson(
  1. Map json_
)

Implementation

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