toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'text': this.text,
    'left': this.left,
    'top': this.top,
    'font': this.font.toMap()
  };
}