toMap method

Map<String, dynamic> toMap()

Converts a ProfileViewPositioned object into a map.

Implementation

Map<String, dynamic> toMap() => {
      "left": left,
      "top": top,
      "right": right,
      "bottom": bottom,
      "width": width,
      "height": height
    };