ResponseMessage_Text constructor

ResponseMessage_Text({
  1. Iterable<String>? text,
  2. bool? allowPlaybackInterruption,
})

Implementation

factory ResponseMessage_Text({
  $core.Iterable<$core.String>? text,
  $core.bool? allowPlaybackInterruption,
}) {
  final _result = create();
  if (text != null) {
    _result.text.addAll(text);
  }
  if (allowPlaybackInterruption != null) {
    _result.allowPlaybackInterruption = allowPlaybackInterruption;
  }
  return _result;
}