FetchFileGitStatusesResponse.fromJson constructor

FetchFileGitStatusesResponse.fromJson(
  1. 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(),
    );