toValue method
Implementation
String toValue() {
switch (this) {
case Op.add:
return 'add';
case Op.remove:
return 'remove';
case Op.replace:
return 'replace';
case Op.move:
return 'move';
case Op.copy:
return 'copy';
case Op.test:
return 'test';
}
}