HttpsCallablePlatform constructor

HttpsCallablePlatform(
  1. FirebaseFunctionsPlatform functions,
  2. String? origin,
  3. String? name,
  4. HttpsCallableOptions options,
  5. Uri? uri,
)

Creates a new HttpsCallablePlatform instance.

Implementation

HttpsCallablePlatform(
  this.functions,
  this.origin,
  this.name,
  this.options,
  this.uri,
)   : assert(name != null || uri != null),
      super(token: _token);