hidden property

Future<bool?> hidden

Implementation

Future<bool?> get hidden async {
  final result = await kMethodChannel
      .invokeMethod('UIView::getHidden', {'__this__': this});
  return result;
}