copyWith method

LogicalPixel copyWith({
  1. double? value,
})

Implementation

LogicalPixel copyWith({
  double? value
}) {
  return LogicalPixel(
    value ?? this.value
  );
}