20 lines
621 B
Dart
20 lines
621 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'verify_otp_request.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
VerifyOtpRequest _$VerifyOtpRequestFromJson(Map<String, dynamic> json) =>
|
|
VerifyOtpRequest(
|
|
phone: json['phone'] as String,
|
|
otpCode: json['otpCode'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$VerifyOtpRequestToJson(VerifyOtpRequest instance) =>
|
|
<String, dynamic>{
|
|
'phone': instance.phone,
|
|
'otpCode': instance.otpCode,
|
|
};
|