HideWidgetStep constructor

HideWidgetStep({
  1. bool? hide,
  2. required String testableId,
  3. Duration? timeout,
})

Implementation

HideWidgetStep({
  this.hide,
  required this.testableId,
  this.timeout,
}) : assert(testableId.isNotEmpty == true);