DecodeInput constructor

DecodeInput({
  1. String? text,
})

Implementation

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