toUnFormattedString method

  1. @override
String toUnFormattedString(
  1. Context context
)
override

Implementation

@override
String toUnFormattedString(Context context) {
  if (code == context.lastCode) {
    return ''; //add nothing
  } else {
    return code;
  }
}