import 'dart:ui'; class Meeting { Meeting(this.eventName, this.from, this.to, this.background, this.isAllDay); String eventName; DateTime from, to; Color background; bool isAllDay; }