NeatGenerate constructor

const NeatGenerate({
  1. GeneratePadding? padding = const GeneratePadding(),
  2. GenerateSpace? space = const GenerateSpace(),
})

Implementation

const NeatGenerate({
  ///padding helpers generator options
  ///if null, padding helpers will not be generated
  this.padding = const GeneratePadding(),

  ///space widgets generator options
  ///if null, space widgets will not be generated
  this.space = const GenerateSpace(),
});