FFLocalStateUpdateListItem constructor

FFLocalStateUpdateListItem({
  1. FFValue? index,
  2. FFLocalStateFieldUpdate? update,
})

Implementation

factory FFLocalStateUpdateListItem({
  FFValue? index,
  FFLocalStateFieldUpdate? update,
}) {
  final result = create();
  if (index != null) result.index = index;
  if (update != null) result.update = update;
  return result;
}