about method

Future<DriveAbout> about(
  1. AboutRequest request
)

Obtains a user's Drive information, such as its storage quota limit and maximum size of a file that can be uploaded by the user.

Implementation

Future<DriveAbout> about(AboutRequest request) async {
  final String result =
      await _channel.invokeMethod('About#Get', request.toJson());
  return DriveAbout.fromJson(result);
}