Buyer.fromJson constructor
Buyer.fromJson(
- Map json_
Implementation
Buyer.fromJson(core.Map json_)
: this(
accountId: json_.containsKey('accountId')
? json_['accountId'] as core.String
: null,
);