HttpsCallableOptions constructor

HttpsCallableOptions({
  1. Duration timeout = const Duration(seconds: 60),
  2. bool limitedUseAppCheckToken = false,
})

Constructs a new HttpsCallableOptions instance with given timeout & limitedUseAppCheckToken Defaults timeout to 60 seconds. Defaults limitedUseAppCheckToken to false

Implementation

HttpsCallableOptions(
    {this.timeout = const Duration(seconds: 60),
    this.limitedUseAppCheckToken = false});