MarkerIcon constructor

const MarkerIcon({
  1. String? assetName,
  2. Uint8List? assetBytes,
  3. int width = 0,
  4. int height = 0,
})

Implementation

const MarkerIcon({
  this.assetName,
  this.assetBytes,
  this.width = 0,
  this.height = 0,
}) : assert(assetName != null || assetBytes != null);