refresh method

Future<void> refresh()

Implementation

Future<void> refresh() async {
  try {
    await channel.invokeMethod('refresh');
  } on PlatformException catch (e) {
    print(e.message);
  }
}