GeneratorLog.warning constructor

GeneratorLog.warning({
  1. String? title,
  2. dynamic data,
  3. String? as,
})

Implementation

GeneratorLog.warning({this.title, this.data, this.as}) {
  print('${_logColorsWarning[0]}[${PackageInfo.elementsMainName}] [${LogType.warning.typeName}] $title $_data $_as ${_logColorsWarning[1]}');
}