copyWith method

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

Implementation

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