SubscriptionDeferralInfo.fromJson constructor
SubscriptionDeferralInfo.fromJson(
- Map json_
Implementation
SubscriptionDeferralInfo.fromJson(core.Map json_)
: this(
desiredExpiryTimeMillis: json_.containsKey('desiredExpiryTimeMillis')
? json_['desiredExpiryTimeMillis'] as core.String
: null,
expectedExpiryTimeMillis:
json_.containsKey('expectedExpiryTimeMillis')
? json_['expectedExpiryTimeMillis'] as core.String
: null,
);