AuthMethod constructor

const AuthMethod({
  1. required String id,
  2. required bool selected,
  3. GoogleClientId? googleClientId,
  4. AppleWebOptions? appleWebOptions,
})

Implementation

const AuthMethod({
  required this.id,
  required this.selected,
  this.googleClientId,
  this.appleWebOptions,
});