toMap method

Map toMap()

Implementation

Map toMap() {
  Map map = <String, dynamic>{};

  map['paths'] = paths;
  map['durs'] = durs;
  map['widths'] = widths;
  map['heights'] = heights;

  return map;
}