Coordinates constructor

Coordinates(
  1. double? latitude,
  2. double? longitude
)

coordinates that accepts latitude and logitude as params

Implementation

Coordinates(this.latitude, this.longitude);