buildFunctionUrl method
Builds the function URL.
Format: https://{locationId}-{projectId}.cloudfunctions.net/{functionName}
Implementation
String buildFunctionUrl({
required String projectId,
required String locationId,
required String functionName,
}) {
return 'https://$locationId-$projectId.cloudfunctions.net/$functionName';
}