FetchProviderResponse constructor

const FetchProviderResponse({
  1. @Default(<String>[]) List<String> allProviders,
  2. @Default(false) bool registered,
})

Default constructors

Implementation

const factory FetchProviderResponse({
  /// The list of providers that the user has previously signed in with.
  @Default(<String>[]) List<String> allProviders,

  /// Whether the email is for an existing account
  @Default(false) bool registered,
}) = _FetchProviderResponse;