when method

  1. @override
bool when(
  1. BuildContext context
)
override

Determines whether the specified variant evaluates to false.

Returns true if the variant evaluates to false within the given context, and false otherwise.

Implementation

@override
bool when(BuildContext context) => !variant.when(context);