NotificationSubscription.fromJson constructor

NotificationSubscription.fromJson(
  1. Map json_
)

Implementation

NotificationSubscription.fromJson(core.Map json_)
  : this(
      allManagedAccounts: json_['allManagedAccounts'] as core.bool?,
      callBackUri: json_['callBackUri'] as core.String?,
      name: json_['name'] as core.String?,
      registeredEvent: json_['registeredEvent'] as core.String?,
      targetAccount: json_['targetAccount'] as core.String?,
    );