InfoWindow constructor

InfoWindow({
  1. required String id,
  2. required String title,
  3. required String description,
})

Implementation

InfoWindow({
  required this.id,
  required this.title,
  required this.description,
})  : assert(title.isNotEmpty, 'Title cannot be empty'),
      assert(description.isNotEmpty, 'Description cannot be empty');