Decorator constructor

Decorator(
  1. String fullString
)

Implementation

Decorator(String fullString) {
  prfix = fullString.split('(').first;
  string = fullString;
}