ObscureWidgetStep constructor

ObscureWidgetStep({
  1. Color? color,
  2. required String testableId,
  3. Duration? timeout,
})

Implementation

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