copyWith method

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

Implementation

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