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