toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final maxValueColor = this.maxValueColor;
  final maxValueColorStyle = this.maxValueColorStyle;
  final midValueColor = this.midValueColor;
  final midValueColorStyle = this.midValueColorStyle;
  final minValueColor = this.minValueColor;
  final minValueColorStyle = this.minValueColorStyle;
  final noDataColor = this.noDataColor;
  final noDataColorStyle = this.noDataColorStyle;
  return {
    'maxValueColor': ?maxValueColor,
    'maxValueColorStyle': ?maxValueColorStyle,
    'midValueColor': ?midValueColor,
    'midValueColorStyle': ?midValueColorStyle,
    'minValueColor': ?minValueColor,
    'minValueColorStyle': ?minValueColorStyle,
    'noDataColor': ?noDataColor,
    'noDataColorStyle': ?noDataColorStyle,
  };
}