ProductAccount.fromJson constructor

ProductAccount.fromJson(
  1. Map json_
)

Implementation

ProductAccount.fromJson(core.Map json_)
  : this(
      accountId: json_['accountId'] as core.String?,
      accountType: json_['accountType'] as core.String?,
      product: json_['product'] as core.String?,
    );