toValue method
Implementation
String toValue() {
switch (this) {
case ChangeAction.insert:
return 'INSERT';
case ChangeAction.delete:
return 'DELETE';
}
}
String toValue() {
switch (this) {
case ChangeAction.insert:
return 'INSERT';
case ChangeAction.delete:
return 'DELETE';
}
}