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