HttpsCallable constructor

  1. @visibleForTesting
HttpsCallable({
  1. required FirebaseApp app,
  2. required String region,
  3. required String? origin,
  4. required HttpsCallableOptions options,
  5. required String name,
  6. required Client client,
})

Creates an HttpsCallable

Implementation

@visibleForTesting
HttpsCallable({
  required this.app,
  required this.region,
  required this.origin,
  required this.options,
  required this.name,
  required http.Client client,
}) : _client = client;