typifyWith method

String typifyWith(
  1. String type
)

Implementation

String typifyWith(String type) {
  assert(!type.contains('#'));
  if (isEmpty) {
    return type;
  }
  return '$type#$this';
}