RouterMd5AuthenticationKey.fromJson constructor

RouterMd5AuthenticationKey.fromJson(
  1. Map json_
)

Implementation

RouterMd5AuthenticationKey.fromJson(core.Map json_)
    : this(
        key: json_.containsKey('key') ? json_['key'] as core.String : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );