brands property

Future<String> brands

Get the API version(SDKINT) of the native platform。

return API version(SDKINT)

Implementation

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