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