WingsIconfont constructor

WingsIconfont({String readPath String writePath })

Implementation

WingsIconfont({this.readPath, this.writePath}) {
  this.readPath ??= IconfontConfig.readPath;
  this.writePath ??= IconfontConfig.writePath;
  this.pubspecYaml =
      File(IconfontConfig.yamlPath).readAsStringSync().toPubspecYaml();

  _init();
}