DateRemindListConversion class

To handle exporting DateRemindList from varous source in flutter

Constructors

DateRemindListConversion()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

convertEventsOnlyListFromSource<S>(List<S> source, {required Events exportEvents(S)}) DateRemindList
Convert to DateRemindList for Events only in the List
convertHolidayOnlyListFromSource<S>(List<S> source, {required Holiday exportHoliday(S)}) DateRemindList
Convert to DateRemindList for Holiday only in the List
convertListFromDividedSource<E, H>(List<E> eventsSource, List<H> holidaySource, {required Events exportEvents(E), required Holiday exportHoliday(H)}) DateRemindList
Getting Events and Holiday on different classes
convertListFromSource<S>(List<S> source, {required bool eventsCondition(S), required bool holidayCondition(S), required Events exportEvents(S), required Holiday exportHoliday(S)}) DateRemindList
Load a List of source from other classes