cert static method

Credential cert(
  1. dynamic credentials
)

Returns Credential created from the provided service account that grants admin access to Firebase services.

This credential can be used in the call to initializeApp. credentials must be a path to a service account key JSON file or an object representing a service account key.

Implementation

static Credential cert(credentials) {
  throw UnimplementedError();
}