isFirebaseAvailable property

Future<bool> isFirebaseAvailable

FIREBASE METHODS ********************************************* Check if firebase is fully available on the project

Implementation

/// Check if firebase is fully available on the project
Future<bool> get isFirebaseAvailable async {
  final bool isAvailable =
      await _channel.invokeMethod(CHANNEL_METHOD_IS_FCM_AVAILABLE);
  return isAvailable;
}