marco.pms.mobile/lib/model/chart_model.dart
Vaibhav Surve 99902e743c Flutter application
- Created generated_plugin_registrant.cc and generated_plugin_registrant.h to manage plugin registration.
- Added generated_plugins.cmake for plugin configuration in CMake.
- Implemented CMakeLists.txt for the Windows runner, defining build settings and dependencies.
- Created Runner.rc for application resources including versioning and icons.
- Developed flutter_window.cpp and flutter_window.h to manage the Flutter window lifecycle.
- Implemented main.cpp as the entry point for the Windows application.
- Added resource.h for resource definitions.
- Included app icon in resources.
- Created runner.exe.manifest for application settings.
- Developed utils.cpp and utils.h for console management and command line argument handling.
- Implemented win32_window.cpp and win32_window.h for high DPI-aware window management.
2025-04-17 12:30:38 +05:30

35 lines
671 B
Dart

import 'package:flutter/material.dart';
class ChartSampleData {
ChartSampleData(
{this.x,
this.y,
this.xValue,
this.yValue,
this.secondSeriesYValue,
this.thirdSeriesYValue,
this.pointColor,
this.size,
this.text,
this.open,
this.close,
this.low,
this.high,
this.volume});
final dynamic x;
final num? y;
final dynamic xValue;
final num? yValue;
final num? secondSeriesYValue;
final num? thirdSeriesYValue;
final Color? pointColor;
final num? size;
final String? text;
final num? open;
final num? close;
final num? low;
final num? high;
final num? volume;
}