AclRule.fromJson constructor

AclRule.fromJson(
  1. Map json_
)

Implementation

AclRule.fromJson(core.Map json_)
  : this(
      rule: json_['rule'] as core.String?,
      username: json_['username'] as core.String?,
    );