DriveCredentials constructor

DriveCredentials({
  1. String? unionId,
  2. String? accessToken,
  3. RefreshTokenCallback? callback,
  4. int? expiresInSeconds,
})

Implementation

DriveCredentials({
  this.unionId,
  this.accessToken,
  this.callback,
  this.expiresInSeconds,
}) {
  _channel.setMethodCallHandler(_onMethodCall);
}