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.')
PurchaseStateWrapper fromJson(int? json) {
if (json == null) {
return PurchaseStateWrapper.unspecified_state;
}
return $enumDecode(_$PurchaseStateWrapperEnumMap, json);
}