BMFHeatMap constructor Null safety
- {required List<
BMFHeatMapNode> data, - int? radius,
- double? opacity = 0.6,
- BMFGradient? gradient}
BMFHeatMap构造方法
Implementation
BMFHeatMap({
required this.data,
this.radius,
this.opacity: 0.6,
this.gradient,
}) : assert(data.length > 0);