ChoosePrivateKeyRule.fromJson constructor

ChoosePrivateKeyRule.fromJson(
  1. Map json_
)

Implementation

ChoosePrivateKeyRule.fromJson(core.Map json_)
  : this(
      packageNames:
          (json_['packageNames'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      privateKeyAlias: json_['privateKeyAlias'] as core.String?,
      urlPattern: json_['urlPattern'] as core.String?,
    );