copyWith method

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

Implementation

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