LocalAccountProto_CreateAppRequest constructor

LocalAccountProto_CreateAppRequest({
  1. String? phone,
  2. String? lastName,
  3. String? firstName,
  4. String? locale,
  5. String? company,
  6. int? clientId,
  7. String? groupId,
})

Implementation

factory LocalAccountProto_CreateAppRequest({
  $core.String? phone,
  $core.String? lastName,
  $core.String? firstName,
  $core.String? locale,
  $core.String? company,
  $core.int? clientId,
  $core.String? groupId,
}) {
  final result = create();
  if (phone != null) result.phone = phone;
  if (lastName != null) result.lastName = lastName;
  if (firstName != null) result.firstName = firstName;
  if (locale != null) result.locale = locale;
  if (company != null) result.company = company;
  if (clientId != null) result.clientId = clientId;
  if (groupId != null) result.groupId = groupId;
  return result;
}