supportedUnits method
Calls supportedUnits() without applying discovery validation.
Implementation
Future<List<String>> supportedUnits({BlockNum? atBlock}) async {
final result = await _read('supportedUnits', const [], atBlock: atBlock);
return List<String>.unmodifiable((result.single as List).cast<String>());
}