toJsonWithStabilId method

Map<String, dynamic> toJsonWithStabilId()
inherited

Implementation

Map<String, dynamic> toJsonWithStabilId() {
  final body = getAttributes;
  return {
    'stabil_id': stabilID,
    'type': type,
    'name': name,
    'description': description,
    'parent_id': parentID,
    'properties': body,
    'rect_properties': rectPropertiesToJson(),
    'updated_at': updatedAt.toIso8601String(),
    'child_order': childOrder,
    'component_id': componentID,
    'is_locked': isLocked,
  };
}