String fullKind

Source

String get fullKind {
  if (isConst) return 'const $kind';
  if (isFactory) return 'factory $kind';
  return kind;
}