ChatLocation constructor

const ChatLocation({
  1. required Location location,
  2. required String address,
})

Creates a new ChatLocation object.

Implementation

const ChatLocation({
  required this.location,
  required this.address,
});