SafeAreaSelector extension

Allows filtering SafeArea by the properties provided via Diagnosticable.debugFillProperties

on

Methods

whereBottom(MatchProp<bool> match) WidgetSelector<SafeArea>
Creates a WidgetSelector that finds all SafeArea where bottom matches the condition.
whereLeft(MatchProp<bool> match) WidgetSelector<SafeArea>
Creates a WidgetSelector that finds all SafeArea where left matches the condition.
whereRight(MatchProp<bool> match) WidgetSelector<SafeArea>
Creates a WidgetSelector that finds all SafeArea where right matches the condition.
whereTop(MatchProp<bool> match) WidgetSelector<SafeArea>
Creates a WidgetSelector that finds all SafeArea where top matches the condition.
withBottom(bool? value) WidgetSelector<SafeArea>
Creates a WidgetSelector that finds all SafeArea where bottom equals (==) value.
withLeft(bool? value) WidgetSelector<SafeArea>
Creates a WidgetSelector that finds all SafeArea where left equals (==) value.
withRight(bool? value) WidgetSelector<SafeArea>
Creates a WidgetSelector that finds all SafeArea where right equals (==) value.
withTop(bool? value) WidgetSelector<SafeArea>
Creates a WidgetSelector that finds all SafeArea where top equals (==) value.