fromJson method

  1. @override
  2. @Deprecated('JSON serialization is not intended for public use, and will ' 'be removed in a future version.')
ProrationMode fromJson(
  1. int? json
)

Implementation

@override
@Deprecated('JSON serialization is not intended for public use, and will '
    'be removed in a future version.')
ProrationMode fromJson(int? json) {
  if (json == null) {
    return ProrationMode.unknownSubscriptionUpgradeDowngradePolicy;
  }
  return $enumDecode(_$ProrationModeEnumMap, json);
}