APIUserCreateOptions constructor

APIUserCreateOptions({
  1. StringValue? displayName,
  2. StringValue? description,
})

Implementation

factory APIUserCreateOptions({
  $1.StringValue? displayName,
  $1.StringValue? description,
}) {
  final result = create();
  if (displayName != null) result.displayName = displayName;
  if (description != null) result.description = description;
  return result;
}