UncommittedFileChange.fromJson constructor

UncommittedFileChange.fromJson(
  1. Map json_
)

Implementation

UncommittedFileChange.fromJson(core.Map json_)
  : this(
      path: json_['path'] as core.String?,
      state: json_['state'] as core.String?,
    );