Future getBool()

in lib/confidence_flutter_sdk_method_channel.dart [92:99]


  Future<bool> getBool(String key, bool defaultValue) async {
    final value = await methodChannel
        .invokeMethod<bool>(
        'getBool',
        {'key': key, 'defaultValue': defaultValue}
    );
    return value!;
  }