FFChildSlotProperties constructor

FFChildSlotProperties({
  1. FFIdentifier? slotIdentifier,
  2. FFChildSlotUIProperties? uiProperties,
})

Implementation

factory FFChildSlotProperties({
  FFIdentifier? slotIdentifier,
  FFChildSlotUIProperties? uiProperties,
}) {
  final result = create();
  if (slotIdentifier != null) result.slotIdentifier = slotIdentifier;
  if (uiProperties != null) result.uiProperties = uiProperties;
  return result;
}