Seller.fromJson constructor

Seller.fromJson(
  1. 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,
      );