Apply dart auto fixes
This commit is contained in:
@ -7,7 +7,7 @@ import 'CrossPainter.dart';
|
||||
class AppointmentComponent extends StatefulWidget {
|
||||
final CalendarAppointmentDetails details;
|
||||
final bool crossedOut;
|
||||
const AppointmentComponent({Key? key, required this.details, this.crossedOut = false}) : super(key: key);
|
||||
const AppointmentComponent({super.key, required this.details, this.crossedOut = false});
|
||||
|
||||
@override
|
||||
State<AppointmentComponent> createState() => _AppointmentComponentState();
|
||||
|
@ -3,7 +3,7 @@ import 'package:syncfusion_flutter_calendar/calendar.dart';
|
||||
|
||||
class TimeRegionComponent extends StatefulWidget {
|
||||
final TimeRegionDetails details;
|
||||
const TimeRegionComponent({Key? key, required this.details}) : super(key: key);
|
||||
const TimeRegionComponent({super.key, required this.details});
|
||||
|
||||
@override
|
||||
State<TimeRegionComponent> createState() => _TimeRegionComponentState();
|
||||
|
@ -20,7 +20,7 @@ import 'timeRegionComponent.dart';
|
||||
import 'timetableEvents.dart';
|
||||
|
||||
class Timetable extends StatefulWidget {
|
||||
const Timetable({Key? key}) : super(key: key);
|
||||
const Timetable({super.key});
|
||||
|
||||
@override
|
||||
State<Timetable> createState() => _TimetableState();
|
||||
|
Reference in New Issue
Block a user