FirebaseEndPoint constructor

FirebaseEndPoint({
  1. required String name,
  2. required String uri,
  3. required String firebaseAuthenticationMethod,
  4. String? email,
  5. String? password,
  6. String? token,
  7. required String projectID,
  8. required String webAPIKey,
  9. required String androidGoogleAppID,
  10. required String iOSGoogleAppID,
  11. required String gcmSenderID,
})

Creates a FirebaseEndPoint.

Implementation

FirebaseEndPoint(
    {required this.name,
    required this.uri,
    required this.firebaseAuthenticationMethod,
    this.email,
    this.password,
    this.token,
    required this.projectID,
    required this.webAPIKey,
    required this.androidGoogleAppID,
    required this.iOSGoogleAppID,
    required this.gcmSenderID})
    : super();