toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  // ignore: unnecessary_cast
  return {
    'path': this.path,
    'row': this.row,
    'column': this.column,
    'width': this.width,
    'height': this.height,
  } as Map<String, dynamic>;
}