ChoosePrivateKeyRule.fromJson constructor
ChoosePrivateKeyRule.fromJson(
- 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?,
);