UserGrantRoleKeyQuery constructor

UserGrantRoleKeyQuery({
  1. String? roleKey,
  2. TextQueryMethod? method,
})

Implementation

factory UserGrantRoleKeyQuery({
  $core.String? roleKey,
  $7.TextQueryMethod? method,
}) {
  final _result = create();
  if (roleKey != null) {
    _result.roleKey = roleKey;
  }
  if (method != null) {
    _result.method = method;
  }
  return _result;
}