callFunction method
Implementation
@override
Future<HttpsCallableResult> callFunction(
String functionName,
Map<String, dynamic> parameters,
) async {
final callable = FirebaseFunctions.instance.httpsCallable(functionName);
return await callable(parameters);
}