enableAddKeyValue static method

Future enableAddKeyValue({
  1. int? flag,
})

Implementation

static Future enableAddKeyValue({int? flag}) async {
  Map<String, Object> map = {"flag": flag ?? 0};
  await _channel.invokeMethod('enableAddKeyValue', map);
}