TaskPushNotificationConfig.fromJson constructor

TaskPushNotificationConfig.fromJson(
  1. Map json_
)

Implementation

TaskPushNotificationConfig.fromJson(core.Map json_)
  : this(
      name: json_['name'] as core.String?,
      pushNotificationConfig: json_.containsKey('pushNotificationConfig')
          ? PushNotificationConfig.fromJson(
              json_['pushNotificationConfig']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );