marco.pms.mobileapp/lib/model/lead_report_model.dart
Vaibhav Surve a5dd5e19fc Add Windows runner implementation for Flutter application
- Created CMakeLists.txt for Flutter and runner components.
- Implemented resource script (Runner.rc) for application metadata.
- Developed main entry point (main.cpp) for the Windows application.
- Added FlutterWindow class to manage the Flutter view within a Win32 window.
- Implemented utility functions for console management and command line argument parsing.
- Established Win32Window class for high DPI-aware window handling.
- Included application icon and manifest for proper Windows integration.
- Set up build configurations and dependencies for the Flutter application on Windows.
2025-04-23 09:55:31 +05:30

48 lines
1.6 KiB
Dart

import 'dart:convert';
import 'package:marco/helpers/services/json_decoder.dart';
import 'package:marco/model/identifier_model.dart';
import 'package:flutter/services.dart';
class LeadReportModel extends IdentifierModel {
final String firstName, email, phoneNumber, companyName, status, location;
final DateTime date;
final int amount;
LeadReportModel(super.id, this.firstName, this.email, this.phoneNumber, this.companyName, this.status, this.location, this.date, this.amount);
static LeadReportModel fromJSON(Map<String, dynamic> json) {
JSONDecoder decoder = JSONDecoder(json);
String firstName = decoder.getString('first_name');
String email = decoder.getString('email');
String phoneNumber = decoder.getString('phone_number');
String companyName = decoder.getString('company_name');
String status = decoder.getString('status');
String location = decoder.getString('location');
DateTime date = decoder.getDateTime('date');
int amount = decoder.getInt('amount');
return LeadReportModel(decoder.getId, firstName, email, phoneNumber, companyName, status, location, date, amount);
}
static List<LeadReportModel> listFromJSON(List<dynamic> list) {
return list.map((e) => LeadReportModel.fromJSON(e)).toList();
}
static List<LeadReportModel>? _dummyList;
static Future<List<LeadReportModel>> get dummyList async {
if (_dummyList == null) {
dynamic data = json.decode(await getData());
_dummyList = listFromJSON(data);
}
return _dummyList!;
}
static Future<String> getData() async {
return await rootBundle.loadString('assets/data/leads_report_data.json');
}
}