refreshInbox method

Future<bool?> refreshInbox()

Forces the inbox to refresh.

This is normally not needed as the inbox will automatically refresh on foreground or when a push arrives that's associated with a message.

Implementation

Future<bool?> refreshInbox() async {
  return _module.channel.invokeMethod("messageCenter#refreshMessages");
}