logColors property

Map<String, Color> get logColors

Implementation

Map<String, Color> get logColors {
  if (_customColors != null) {
    final customMap = Map<String, Color>.from(_defaultColors);
    //ignore: unnecessary_non_null_assertion
    customMap.addAll(_customColors!);
    return customMap;
  }
  return _defaultColors;
}