Initial draft
This commit is contained in:
21
lib/dto/payment.g.dart
Normal file
21
lib/dto/payment.g.dart
Normal file
@ -0,0 +1,21 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'payment.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
PaymentMethodDTO _$PaymentMethodDTOFromJson(Map<String, dynamic> json) =>
|
||||
PaymentMethodDTO(
|
||||
json['id'] as String,
|
||||
description: json['description'] as String,
|
||||
shortCode: json['shortCode'] as String,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$PaymentMethodDTOToJson(PaymentMethodDTO instance) =>
|
||||
<String, dynamic>{
|
||||
'id': instance.id,
|
||||
'description': instance.description,
|
||||
'shortCode': instance.shortCode,
|
||||
};
|
||||
Reference in New Issue
Block a user