ClientProto_UpdateRequest constructor

ClientProto_UpdateRequest({
  1. int? id,
  2. String? name,
  3. String? country,
  4. List<int>? image,
  5. String? phone,
  6. bool? public,
})

Implementation

factory ClientProto_UpdateRequest({
  $core.int? id,
  $core.String? name,
  $core.String? country,
  $core.List<$core.int>? image,
  $core.String? phone,
  $core.bool? public,
}) {
  final $result = create();
  if (id != null) {
    $result.id = id;
  }
  if (name != null) {
    $result.name = name;
  }
  if (country != null) {
    $result.country = country;
  }
  if (image != null) {
    $result.image = image;
  }
  if (phone != null) {
    $result.phone = phone;
  }
  if (public != null) {
    $result.public = public;
  }
  return $result;
}