shouldShowConditionally property

bool get shouldShowConditionally

Normalized conditional.show as bool

Implementation

bool get shouldShowConditionally {
  final show = conditional?['show'];
  return show == true || show == 'true';
}