toValue method
Implementation
String toValue() {
switch (this) {
case ChangeType.create:
return 'CREATE';
case ChangeType.update:
return 'UPDATE';
case ChangeType.delete:
return 'DELETE';
}
}
String toValue() {
switch (this) {
case ChangeType.create:
return 'CREATE';
case ChangeType.update:
return 'UPDATE';
case ChangeType.delete:
return 'DELETE';
}
}