noteAction method

  1. @override
Parser noteAction()

Implementation

@override
Parser noteAction() => super.noteAction().map((each) {
      final e = each as List;
      return NoteAction(
        date: e.first as DateTime,
        account: e.elementAt(2) as Account,
        note: e.elementAt(3).toString().replaceAll('"', ''),
        comment: e.elementAt(4) as String,
        metadata: e.elementAt(5) as Map<String, MetaValue>,
      );
    });