value property

String value

Implementation

String get value {
  if (this.toString().contains("_")) {
    return this.toString().replaceAll("_", "-").split('.')[1];
  }
  return this.toString().split('.')[1];
}