toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'difficult_to_read': difficultToRead,
    'entire_document_not_in_frame': entireDocumentNotInFrame,
    'document_type': documentType,
    'funds_amount': fundsAmount,
    'currency_code': currencyCode,
    'account_name': accountName,
    'account_number': accountNumber,
    'date_of_statement': dateOfStatement?.toIso8601String(),
  };
}