toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    'id': id,
    'type': type.index,
    'centerPoint': centerPoint != null
        ? {'x': centerPoint!.dx, 'y': centerPoint!.dy}
        : null,
    'color': color.value,
    'strokeWidth': strokeWidth,
    'createTime': createTime.millisecondsSinceEpoch,
  };
}