toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'auxiliaryFields': auxiliaryFields
        ?.map((e) => e.toJson()..removeWhere((_, value) => value == null))
        .toList(),
    'headerFields': headerFields
        ?.map((e) => e.toJson()..removeWhere((_, value) => value == null))
        .toList(),
    'secondaryFields': secondaryFields
        ?.map((e) => e.toJson()..removeWhere((_, value) => value == null))
        .toList(),
    'backFields': backFields
        ?.map((e) => e.toJson()..removeWhere((_, value) => value == null))
        .toList(),
    'primaryFields': primaryFields
        ?.map((e) => e.toJson()..removeWhere((_, value) => value == null))
        .toList(),
    'transitType': transitType,
  };
}