toJson method
Implementation
@override
Map<String, dynamic> toJson() => <String, dynamic>{
'number': number,
'expiration_date': expirationDate?.toJson(),
'front_side': frontSide?.toJson(),
'reverse_side': reverseSide?.toJson(),
'selfie': selfie?.toJson(),
'translation': translation.map((item) => item.toJson()).toList(),
'@type': constructor,
};