SubscriberConfig.fromJson constructor
SubscriberConfig.fromJson(
- 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?,
);