Key.fromJson constructor

Key.fromJson(
  1. Map json_
)

Implementation

Key.fromJson(core.Map json_)
    : this(
        keyParts: json_.containsKey('keyParts')
            ? json_['keyParts'] as core.List
            : null,
      );