FetchGitHubInstallationsResponse.fromJson constructor

FetchGitHubInstallationsResponse.fromJson(
  1. Map json_
)

Implementation

FetchGitHubInstallationsResponse.fromJson(core.Map json_)
    : this(
        installations: json_.containsKey('installations')
            ? (json_['installations'] as core.List)
                .map((value) => Installation.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );