postfix property

  1. @override
String? get postfix
override

Name postfix in [name.postfix.unit]; may be null to have no value.

Implementation

@override
String? get postfix {
  final split = _nameWithoutBrackets.split('.');
  return split.length > 1 ? split[1] : null;
}