RBACBindingConfig.fromJson constructor

RBACBindingConfig.fromJson(
  1. Map json_
)

Implementation

RBACBindingConfig.fromJson(core.Map json_)
  : this(
      enableInsecureBindingSystemAuthenticated:
          json_['enableInsecureBindingSystemAuthenticated'] as core.bool?,
      enableInsecureBindingSystemUnauthenticated:
          json_['enableInsecureBindingSystemUnauthenticated'] as core.bool?,
    );