fromJson method

  1. @override
  2. @Deprecated('JSON serialization is not intended for public use, and will ' 'be removed in a future version.')
PurchaseStateWrapper fromJson(
  1. 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);
}