update method

Future<void> update(
  1. Contact contact
)

Implementation

Future<void> update(Contact contact) async {
  await _channel.invokeMethod(
    'crud.update',
    _withIosNotes({'contact': contact.toJson()}),
  );
}