copyWith method

LabelPerRow copyWith({
  1. int? x,
  2. int? y,
  3. int? width,
  4. int? height,
})

Implementation

LabelPerRow copyWith({
  int? x,
  int? y,
  int? width,
  int? height,
}) {
  return LabelPerRow._internal(
    name,
    _config.copyWith(x: x, y: y, width: width, height: height),
  );
}