gitStatus method
Implementation
@override
Future<List<GitStatusEntry>> gitStatus() async {
final result = await _callMap(Op.gitStatus, const {});
return _list(result['entries']).map(GitStatusEntry.fromJson).toList();
}
@override
Future<List<GitStatusEntry>> gitStatus() async {
final result = await _callMap(Op.gitStatus, const {});
return _list(result['entries']).map(GitStatusEntry.fromJson).toList();
}