AddUsernameRequest constructor

AddUsernameRequest({
  1. Instance? instance,
  2. Organization? organization,
  3. String? id,
  4. SetUsername? username,
})

Implementation

factory AddUsernameRequest({
  $1.Instance? instance,
  $1.Organization? organization,
  $core.String? id,
  $6.SetUsername? username,
}) {
  final result = create();
  if (instance != null) result.instance = instance;
  if (organization != null) result.organization = organization;
  if (id != null) result.id = id;
  if (username != null) result.username = username;
  return result;
}