AccountProto_UpdateRequest constructor

AccountProto_UpdateRequest({
  1. Int64? id,
  2. String? firstName,
  3. String? lastName,
  4. String? locale,
  5. String? company,
})

Implementation

factory AccountProto_UpdateRequest({
  $fixnum.Int64? id,
  $core.String? firstName,
  $core.String? lastName,
  $core.String? locale,
  $core.String? company,
}) {
  final $result = create();
  if (id != null) {
    $result.id = id;
  }
  if (firstName != null) {
    $result.firstName = firstName;
  }
  if (lastName != null) {
    $result.lastName = lastName;
  }
  if (locale != null) {
    $result.locale = locale;
  }
  if (company != null) {
    $result.company = company;
  }
  return $result;
}