UAccountingTimelineItem.fromMap constructor
Implementation
factory UAccountingTimelineItem.fromMap(Map<String, dynamic> json) => UAccountingTimelineItem(
date: DateTime.parse(json["date"]),
inAmount: (json["in"] ?? 0).toString().toDouble(),
outAmount: (json["out"] ?? 0).toString().toDouble(),
);