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