Initial commit

This commit is contained in:
jahongireshonqulov
2025-10-18 09:40:06 +05:00
commit 1bf3e41abe
352 changed files with 16315 additions and 0 deletions

24
lib/core/models/name.dart Normal file
View File

@@ -0,0 +1,24 @@
import 'package:equatable/equatable.dart';
class Name extends Equatable {
const Name({this.uz, this.ru, this.zh});
factory Name.fromJson(dynamic json) {
return Name(uz: json['uz'], ru: json['ru'], zh: json['zh']);
}
final String? uz;
final String? ru;
final String? zh;
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['uz'] = uz;
map['ru'] = ru;
map['zh'] = zh;
return map;
}
@override
List<Object?> get props => [uz, ru, zh];
}