Buyer.fromJson constructor

Buyer.fromJson(
  1. Map _json
)

Implementation

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