Utility constructor

Utility({
  1. Utility_Batch? batch,
})

Implementation

factory Utility({
  Utility_Batch? batch,
}) {
  final result = create();
  if (batch != null) result.batch = batch;
  return result;
}