Recursive class

Class responsible for storing information about recurring payments

  • frequency - how often payment should be repeated
  • quantity - how many times payment should be repeated. If null, quantity = infinity
  • endDate - date in yyyy-MM-dd format
Annotations

Constructors

Recursive({required Frequency frequency, required int? quantity, required String endDate})
Recursive.fromJson(Map<String, dynamic> json)
factory

Properties

endDate String
final
frequency Frequency
latefinal
hashCode int
The hash code for this object.
no setterinherited
quantity int?
latefinal
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
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

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