FFListTakeOperation constructor

FFListTakeOperation({
  1. FFValue? count,
})

Implementation

factory FFListTakeOperation({
  FFValue? count,
}) {
  final result = create();
  if (count != null) result.count = count;
  return result;
}