FirebaseAuthToken constructor

FirebaseAuthToken({
  1. required String projectId,
  2. int timeDiscrepancyInSeconds = 60,
})

Create instance for firebase id token check by projectId

Implementation

FirebaseAuthToken({
  required this.projectId,
  this.timeDiscrepancyInSeconds = 60,
});