Doctor constructor Null safety
Implementation
Doctor({
required String id,
required String name,
required String username,
required String type,
String? imagePath,
this.lastChatMessage,
}) : super(
id: id,
name: name,
username: username,
type: type,
imagePath: imagePath,
);