DecodeInput constructor

DecodeInput({
  1. String? yaml,
})

Implementation

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