SubscriberConfig.fromJson constructor

SubscriberConfig.fromJson(
  1. Map json_
)

Implementation

SubscriberConfig.fromJson(core.Map json_)
  : this(
      dataTypes: (json_['dataTypes'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      subscriptionCreatePolicy:
          json_['subscriptionCreatePolicy'] as core.String?,
    );