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