onUnInit property Null safety

Future<bool?> onUnInit

Use this for uninit device (It is not yet clear whether this is necessary)

Implementation

static Future<bool?> get onUnInit async {
  final bool? success = await _channel.invokeMethod('onUnInit');
  return success;
}