ClientProto_UpdateRequest constructor

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

Implementation

factory ClientProto_UpdateRequest({
  $core.int? id,
  $core.String? name,
  $core.String? country,
  $1.BytesValue? 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;
}