boards property

Future<String> boards

Get the board name of the native platform

return board name

Implementation

static Future<String> get boards async {
  final String version = await _channel.invokeMethod('getBoard');
  return version;
}