Initial commit

This commit is contained in:
jahongireshonqulov
2025-10-17 19:42:02 +05:00
commit 9fbdabafb4
1420 changed files with 28021 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
// To parse this JSON data, do
//
// final settingResponse = settingResponseFromJson(jsonString);
import 'dart:convert';
SettingResponse settingResponseFromJson(String str) => SettingResponse.fromJson(json.decode(str));
String settingResponseToJson(SettingResponse data) => json.encode(data.toJson());
class SettingResponse {
String orderCodePrefix;
SettingResponse({
required this.orderCodePrefix,
});
factory SettingResponse.fromJson(Map<String, dynamic> json) => SettingResponse(
orderCodePrefix: json["order_code_prefix"],
);
Map<String, dynamic> toJson() => {
"order_code_prefix": orderCodePrefix,
};
}