GetAccountInfoResponse.fromJson constructor

GetAccountInfoResponse.fromJson(
  1. Map json_
)

Implementation

GetAccountInfoResponse.fromJson(core.Map json_)
    : this(
        kind: json_['kind'] as core.String?,
        users: (json_['users'] as core.List?)
            ?.map((value) => UserInfo.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );