toValue method
Implementation
String toValue() {
switch (this) {
case ChangeAction.create:
return 'CREATE';
case ChangeAction.delete:
return 'DELETE';
case ChangeAction.upsert:
return 'UPSERT';
}
}
String toValue() {
switch (this) {
case ChangeAction.create:
return 'CREATE';
case ChangeAction.delete:
return 'DELETE';
case ChangeAction.upsert:
return 'UPSERT';
}
}