gitHead method

Future<String> gitHead()

Returns the current git head SHA of the served root.

Implementation

Future<String> gitHead() async =>
    (await _call(DriveOp.gitHead)).header['head'] as String;