AclJwks constructor Null safety

AclJwks(
  1. {Map<String, List<int>>? encryptedJwks}
)

Implementation

factory AclJwks({
  $core.Map<$core.String, $core.List<$core.int>>? encryptedJwks,
}) {
  final _result = create();
  if (encryptedJwks != null) {
    _result.encryptedJwks.addAll(encryptedJwks);
  }
  return _result;
}