AuthStep_Choice constructor

AuthStep_Choice({
  1. String? title,
  2. Iterable<String>? options,
})

Implementation

factory AuthStep_Choice({
  $core.String? title,
  $core.Iterable<$core.String>? options,
}) {
  final _result = create();
  if (title != null) {
    _result.title = title;
  }
  if (options != null) {
    _result.options.addAll(options);
  }
  return _result;
}