LogPart constructor

LogPart(
  1. Type classLocation,
  2. String functionLocation,
  3. Map<String, dynamic> _monitor,
  4. Map<String, dynamic> debug,
  5. List<History> _historyList,
)

Implementation

LogPart(this.classLocation, this.functionLocation, this._monitor, Map<String, dynamic> debug, this._historyList)
:
    // debug は debug 実行時のみ表示する. 本番実行時は表示しない.
    _debug = bool.fromEnvironment(_dart_vm_product) ? const {} : debug
;