operationString method
Implementation
String operationString() {
switch (this) {
case IntentOperation.purchase:
return 'purchase';
case IntentOperation.authorize:
return 'authorize';
}
}
String operationString() {
switch (this) {
case IntentOperation.purchase:
return 'purchase';
case IntentOperation.authorize:
return 'authorize';
}
}