mapperInputAutocomplete function
Implementation
String mapperInputAutocomplete(InputAutocomplete inputAutocomplete) {
switch (inputAutocomplete) {
case InputAutocomplete.on:
return 'on';
case InputAutocomplete.off:
return 'off';
}
}