LocationAttachment constructor

const LocationAttachment({
  1. required double latitude,
  2. required double longitude,
})

Implementation

const LocationAttachment({
  required this.latitude,
  required this.longitude,
}) : super(type: 'location');