GrantRoleKeyQuery constructor

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

Implementation

factory GrantRoleKeyQuery({
  $core.String? roleKey,
  $8.TextQueryMethod? method,
}) {
  final $result = create();
  if (roleKey != null) {
    $result.roleKey = roleKey;
  }
  if (method != null) {
    $result.method = method;
  }
  return $result;
}