loggerName property

String loggerName

The name of the logger associated to this channel.

Implementation

String get loggerName => _loggerName ??= topic.replaceAll(
    RegExp(
      r'[:,*&?!@#$%]',
    ),
    '_');