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,
);