ListBitbucketServerConfigsResponse.fromJson constructor

ListBitbucketServerConfigsResponse.fromJson(
  1. Map json_
)

Implementation

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