AuthRenewOptions constructor

AuthRenewOptions({
  1. required String refreshToken,
  2. Set<String> scopes = const {},
  3. Map<String, String> parameters = const {},
})

Implementation

AuthRenewOptions({
  required this.refreshToken,
  this.scopes = const {},
  this.parameters = const {},
});