ModelGenerator constructor

ModelGenerator(
  1. String _rootClassName,
  2. [bool _privateFields = false,
  3. dynamic hints]
)

Implementation

ModelGenerator(this._rootClassName, [this._privateFields = false, hints]) {
  if (hints != null) {
    this.hints = hints;
  } else {
    this.hints = <Hint>[];
  }
}