SubscriptionsResponse.fromJsonString constructor
SubscriptionsResponse.fromJsonString(
- String source
Parses a SubscriptionsResponse from a JSON string.
Implementation
factory SubscriptionsResponse.fromJsonString(String source) {
final json = jsonDecode(source) as Map<String, dynamic>;
return SubscriptionsResponse.fromJson(json);
}