ClusterStyle constructor

const ClusterStyle({
  1. Color bgColor = const Color(0xFF3F51B5),
  2. Color textColor = const Color(0xFFFFFFFF),
  3. bool showStroke = true,
  4. Color strokeColor = const Color(0xFFFFFFFF),
})

Implementation

const ClusterStyle({
  this.bgColor = const Color(0xFF3F51B5),
  this.textColor = const Color(0xFFFFFFFF),
  this.showStroke = true,
  this.strokeColor = const Color(0xFFFFFFFF),
});