NpmEmailAuth constructor

const NpmEmailAuth({
  1. Key? key,
  2. required dynamic onSuccess(
    1. Map<String, dynamic>
    ),
  3. bool testMode = true,
  4. bool? forceExistingUser,
})

Implementation

const NpmEmailAuth({
  Key? key,
  required this.onSuccess,
  this.testMode = true,
  this.forceExistingUser,
}) : super(key: key);