namespaceWith method

String namespaceWith(
  1. String prefix
)

Implementation

String namespaceWith(String prefix) {
  assert(!prefix.contains(':'));
  return '$prefix:$this';
}