Key.ofType constructor

Key.ofType(
  1. Key from
)

Constructs a key from the existing Key

Copying type and name of from

Implementation

Key.ofType(Key from) {
  type = from.type;
  name = from.name;
}