UserGrantUserTypeQuery constructor

UserGrantUserTypeQuery({
  1. Type? type,
})

Implementation

factory UserGrantUserTypeQuery({
  Type? type,
}) {
  final result = create();
  if (type != null) result.type = type;
  return result;
}