isOppoRom method

Future<bool> isOppoRom()

判断是否为OPPO手机

Implementation

Future<bool> isOppoRom() async {
  final bool isOppo = await _channel.invokeMethod('isOppoRom');
  return isOppo;
}