VoiceCommand constructor

VoiceCommand({
  1. required String value,
})

Implementation

VoiceCommand({
  required String value,
}) {
  id = realwearVoiceCommandInjector<Uuid>().v4();
  this.value = value.toUpperCase();
}