fromJson static method

StoreTransactionAppStore? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static StoreTransactionAppStore? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return StoreTransactionAppStore(
    receipt: (json['receipt'] as String?) ?? '',
  );
}