$UikDividerPropsToJson function
Implementation
Map<String, dynamic> $UikDividerPropsToJson(UikDividerProps entity) {
final Map<String, dynamic> data = <String, dynamic>{};
data['id'] = entity.id;
// data['activetopColor'] = entity.activetopColor;
// data['inactivetopColor'] = entity.inactivetopColor;
// data['activebackgroundColor'] = entity.activebackgroundColor;
// data['inactivetopColor'] = entity.inactivetopColor;
return data;
}