Route constructor Null safety
- {required String id,
- required String code,
- required TransportType transportType,
- required String name,
- Color? color}
Implementation
Route({
required this.id,
required this.code,
required this.transportType,
required this.name,
this.color,
});