The android code references `timeoutMilliseconds`: https://github.com/FirebaseExtended/flutterfire/blob/bfc666daa89698c9fdc342e7ae521ec5e4e8ec5b/packages/cloud_functions/android/src/main/java/io/flutter/plugins/firebase/cloudfunctions/CloudFunctionsPlugin.java#L52 but the dart code passes `timeoutMicroseconds`: https://github.com/FirebaseExtended/flutterfire/blob/bfc666daa89698c9fdc342e7ae521ec5e4e8ec5b/packages/cloud_functions/lib/src/https_callable.dart#L38 The android plugin should use the parameter `timeoutMicroseconds` and should also use `TimeUnit.MICROSECONDS` instead of `TimeUnit.MILLISECONDS`.
The android code references
timeoutMilliseconds:https://github.com/FirebaseExtended/flutterfire/blob/bfc666daa89698c9fdc342e7ae521ec5e4e8ec5b/packages/cloud_functions/android/src/main/java/io/flutter/plugins/firebase/cloudfunctions/CloudFunctionsPlugin.java#L52
but the dart code passes
timeoutMicroseconds:https://github.com/FirebaseExtended/flutterfire/blob/bfc666daa89698c9fdc342e7ae521ec5e4e8ec5b/packages/cloud_functions/lib/src/https_callable.dart#L38
The android plugin should use the parameter
timeoutMicrosecondsand should also useTimeUnit.MICROSECONDSinstead ofTimeUnit.MILLISECONDS.