GbpAccount.fromJson constructor

GbpAccount.fromJson(
  1. Map json_
)

Implementation

GbpAccount.fromJson(core.Map json_)
  : this(
      gbpAccountId: json_['gbpAccountId'] as core.String?,
      gbpAccountName: json_['gbpAccountName'] as core.String?,
      listingCount: json_['listingCount'] as core.String?,
      name: json_['name'] as core.String?,
      type: json_['type'] as core.String?,
    );