copyWith method

Width$Response copyWith({
  1. int? width,
})

Implementation

Width$Response copyWith({int? width}) {
  return Width$Response(width: width ?? this.width);
}