NextStepRequest_Choice constructor

NextStepRequest_Choice({
  1. String? choice,
})

Implementation

factory NextStepRequest_Choice({
  $core.String? choice,
}) {
  final _result = create();
  if (choice != null) {
    _result.choice = choice;
  }
  return _result;
}