Seller.fromJson constructor
Seller.fromJson(
- 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,
);