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