getLastBlock method

Future<String?> getLastBlock()

Get last Block

Implementation

Future<String?> getLastBlock() async {
  final String? response = await _channel.invokeMethod("getLastBlock");
  return response;
}