ExternalSubscription.fromJson constructor

ExternalSubscription.fromJson(
  1. Map json_
)

Implementation

ExternalSubscription.fromJson(core.Map json_)
    : this(
        subscriptionType: json_.containsKey('subscriptionType')
            ? json_['subscriptionType'] as core.String
            : null,
      );