AddUsernameRequest constructor
AddUsernameRequest({
- Instance? instance,
- Organization? organization,
- String? id,
- 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;
}