getAgeGatePromptValue static method

Future<int?> getAgeGatePromptValue()

Returns an int? with the resulting prompt value

Implementation

static Future<int?> getAgeGatePromptValue() async {
  int value = await _channel.invokeMethod("getAgeGatePromptValue");
  return value;
}