asMap method

Map asMap()

Implementation

Map asMap() {
  Map<String, dynamic> map = new Map();

  map["colorHex"] = colorHex;
  map["greenMaskImageName"] = greenMaskImageName;
  map["whiteMaskImageName"] = whiteMaskImageName;
  map["redMaskImageName"] = redMaskImageName;
  map["closeImageName"] = closeImageName;
  map["showStepLabel"] = showStepLabel;
  map["showStatusLabel"] = showStatusLabel;
  map["buttonSize"] = buttonSize;
  map["buttonContentMode"] = buttonContentMode;

  return map;
}