copyWith method

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

Implementation

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