🔥
Firebase Flutter Functionsのリージョン指定でのエミュレーターによるデバッグしたい場合
Functionsのリージョンをasia-northeast1にしてる場合のデバッグ方法。
instanceForでリージョンを指定してからuseFunctionsEmulatorする必要がある。
FirebaseFunctions.instanceFor(region: 'asia-northeast1')
.useFunctionsEmulator('localhost', 5001);
HttpsCallable callable =
FirebaseFunctions.instanceFor(region: 'asia-northeast1').httpsCallable('function_name');
Discussion