operation property
Property getter and setter for operation:
Implementation
String? get operation => _operation;
Implementation
set operation(String? operation) {
this._operation = operation;
wrapped['operation'] = jsonLiteral(operation);
}
Property getter and setter for operation:
String? get operation => _operation;
set operation(String? operation) {
this._operation = operation;
wrapped['operation'] = jsonLiteral(operation);
}