setDescription static method

Future setDescription(
  1. String description
)

Implementation

static Future setDescription(String description) async {
  try {
    await _channel
        .invokeMethod('setDescription', {'description': description});
  } on PlatformException catch (e) {
    print(e);
  }
}