InfoWindow constructor
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');
InfoWindow({
required this.id,
required this.title,
required this.description,
}) : assert(title.isNotEmpty, 'Title cannot be empty'),
assert(description.isNotEmpty, 'Description cannot be empty');