decodedValue property

String get decodedValue

Implementation

String get decodedValue {
  String val = dataSTR == null ? "" : utf8.decode(base64Decode(dataSTR!));
  // val = val.replaceFirst(bcTypeCode, "");
  return val;
}