ChatLocation constructor

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

Represents a location to which a chat is connected

Implementation

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