mirror of
https://github.com/bettercoding-dev/flutter-jwt-auth.git
synced 2025-08-23 08:32:03 +08:00
18 lines
559 B
Dart
18 lines
559 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'login_request.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$LoginRequestImpl _$$LoginRequestImplFromJson(Map<String, dynamic> json) =>
|
|
_$LoginRequestImpl(
|
|
username: json['username'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$$LoginRequestImplToJson(_$LoginRequestImpl instance) =>
|
|
<String, dynamic>{
|
|
'username': instance.username,
|
|
};
|