areFirebaseOptionsEqual static method
Implementation
static bool areFirebaseOptionsEqual(FirebaseOptions a, FirebaseOptions b) {
return a.apiKey == b.apiKey &&
a.appId == b.appId &&
a.messagingSenderId == b.messagingSenderId &&
a.projectId == b.projectId;
}