fromJson method

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

Implementation

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