SubscriptionsResponse.fromJsonString constructor

SubscriptionsResponse.fromJsonString(
  1. 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);
}