name method

Future<String> name()

Get the node's implementation name. Plain old string.

Implementation

Future<String> name() async {
  final response = await _provider.send('system_name', []);
  return response.result as String;
}