setBeauty method

Future<void> setBeauty(
  1. ARGBeauty type,
  2. double value
)

Implementation

Future<void> setBeauty(ARGBeauty type, double value) async {
  try {
    await _channel.invokeMethod<dynamic>('setBeauty', {
      'type': type.index,
      'value': value
    });
  } on PlatformException catch (e) {
    debugPrint('${e.code}: ${e.message}');
  }
}