Todo class

Constructors

Todo({required String uid, String? summary, String? description, List<Attachment>? attachments, List<Attendee>? attendees, Organizer? organizer, DateTime? created, DateTime? lastModified, DateTime? startDate, DateTime? dueDate, DateTime? completedDate, RecurrenceRule? recurrenceRule})
Todo.fromJson(String source)
factory
Todo.fromMap(Map<String, dynamic> map)
factory

Properties

attachments List<Attachment>?
getter/setter pair
attendees List<Attendee>?
getter/setter pair
completedDate DateTime?
getter/setter pair
created DateTime?
getter/setter pair
description String?
getter/setter pair
dueDate DateTime?
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
lastModified DateTime?
getter/setter pair
organizer Organizer?
getter/setter pair
recurrenceRule RecurrenceRule?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
startDate DateTime?
getter/setter pair
summary String?
getter/setter pair
uid String
getter/setter pair

Methods

copyWith({String? uid, String? summary, String? description, List<Attachment>? attachments, List<Attendee>? attendees, Organizer? organizer, DateTime? created, DateTime? lastModified, DateTime? startDate, DateTime? dueDate, DateTime? completedDate, RecurrenceRule? recurrenceRule}) Todo
isCompleted() bool
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toICalString() String
toJson() String
toMap() Map<String, dynamic>
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override