create static method

Voice create({
  1. String? special_type,
  2. String? output_file,
})
override

return original data json

Implementation

static Voice create({
  String? special_type,
  String? output_file,
}) {
  Voice voice = Voice({
    "@type": special_type,
    "output_file": output_file,
  });

  return voice;
}