Seller.fromJson constructor

Seller.fromJson(
  1. Map _json
)

Implementation

Seller.fromJson(core.Map _json)
    : this(
        accountId: _json.containsKey('accountId')
            ? _json['accountId'] as core.String
            : null,
        subAccountId: _json.containsKey('subAccountId')
            ? _json['subAccountId'] as core.String
            : null,
      );