toKey method

Key? toKey([
  1. String? suffix
])

Implementation

Key? toKey([String? suffix]) =>
    this == null ? null : Key("${this}${suffix ?? ''}");