gitStatus method

  1. @override
Future<List<GitStatusEntry>> gitStatus()
override

Implementation

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