ListAccountLabelsResponse.fromJson constructor

ListAccountLabelsResponse.fromJson(
  1. Map json_
)

Implementation

ListAccountLabelsResponse.fromJson(core.Map json_)
  : this(
      accountLabels: (json_['accountLabels'] as core.List?)
          ?.map(
            (value) => AccountLabel.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
    );