action method

T action(
  1. V value,
  2. String action
)

Implementation

T action(V value, String action) {
  resetValues();
  this.value = value;
  paramAction = action;
  return this as T;
}