toJson method

List toJson ()

Implementation

List<dynamic> toJson() {
  return this.transactions?.map((e) => e.toJson())?.toList() ?? [];
}