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