setLabel method

Future<void> setLabel(
  1. String label
)

Update the label of this

Example :

await webhook.setLabel('My webhook name');

Implementation

Future<void> setLabel (String label) async {
  Http http = ioc.singleton(Service.http);
  Response response = await http.patch(url: "/webhooks/$id", payload: { 'name': label });

  if (response.statusCode == 200) {
    this.label = label;
  }
}