ProviderSample constructor

ProviderSample(
  1. String _fileName, {
  2. bool overwrite = false,
  3. bool createEndpoints = false,
  4. String modelPath = '',
  5. bool isServer = false,
  6. String path = '',
})

Implementation

ProviderSample(this._fileName,
    {bool overwrite = false,
    this.createEndpoints = false,
    this.modelPath = '',
    this.isServer = false,
    String path = ''})
    : super(path, overwrite: overwrite) {
  _namePascal = _fileName.pascalCase;
  _nameLower = _fileName.toLowerCase();
}