@override Future<bool> isFeatureEnabled(String key) async { final result = await handleWebMethodCall( MethodCall('isFeatureEnabled', {'key': key}), ); return result as bool? ?? false; }