gitShow method

  1. @override
Future<String> gitShow({
  1. required String rev,
  2. String? path,
})
override

Implementation

@override
Future<String> gitShow({required String rev, String? path}) async {
  final result = await _callMap(Op.gitShow, {'rev': rev, 'path': ?path});
  return '${result['text'] ?? ''}';
}