SignInWithGoogleJwtCommand constructor

SignInWithGoogleJwtCommand(
  1. SignInWithGoogleJwtCommandRequest request
)

Implementation

SignInWithGoogleJwtCommand(this.request) {
  if (!request.isValidJwtToken()) {
    throw ArgumentError(
        'Invalid Google JWT token - must have 3 parts separated by dots');
  }
}