FFChildSlotProperties constructor
FFChildSlotProperties({
- FFIdentifier? slotIdentifier,
- 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;
}