manifest method

Future<Map<String, dynamic>> manifest()

Fetches the served directory manifest as a JSON map.

Implementation

Future<Map<String, dynamic>> manifest() async =>
    (await _call(DriveOp.manifest)).header['manifest']
        as Map<String, dynamic>;