ChatCarteView constructor

const ChatCarteView({
  1. Key? key,
  2. required String name,
  3. String? url,
})

Implementation

const ChatCarteView({
  Key? key,
  required this.name,
  this.url,
}) : super(key: key);