create method

void create([
  1. T? model
])

Implementation

void create([T? model]) {
  data = model ?? builder.call();
}