code property

String get code

Implementation

String get code {
  const String pattern = ".";

  final int divider = toString().indexOf(pattern) + pattern.length;

  final String code = toString().substring(divider);

  return code;
}