FFInteractionTestStep_EnterTextStep constructor

FFInteractionTestStep_EnterTextStep({
  1. String? text,
  2. bool? unfocus,
})

Implementation

factory FFInteractionTestStep_EnterTextStep({
  $core.String? text,
  $core.bool? unfocus,
}) {
  final result = create();
  if (text != null) result.text = text;
  if (unfocus != null) result.unfocus = unfocus;
  return result;
}