sendMessageReadNotificationWithId method

Future<bool> sendMessageReadNotificationWithId(
  1. String id
)

Confirms that a message has been read by the user.

Implementation

Future<bool> sendMessageReadNotificationWithId(String id) {
  return _channel.invokeMethod<Map<Object?, Object?>>(
      'Catapush#sendMessageReadNotificationWithId', {
    'id': id,
  }).then((response) {
    return response!['result']! as bool;
  });
}