delegate property

  1. @visibleForTesting
FirebaseFunctionsPlatform delegate

Returns the underlying FirebaseFunctionsPlatform delegate for this FirebaseFunctions instance. This is useful for testing purposes only.

Implementation

@visibleForTesting
FirebaseFunctionsPlatform get delegate {
  return _delegatePackingProperty ??=
      FirebaseFunctionsPlatform.instanceFor(app: app, region: _region);
}