toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'value1': this.value1,
    'value2': this.value2,
    'value3': this.value3,
  };
}