putLumberdashToWork function

dynamic putLumberdashToWork(
  1. {required List<LumberdashClient> withClients}
)

As it name says, it puts Lumberdash to work by setting up its LumberdashClient. The full power of Lumberdash can be achieved when you use a custom LumberdashClient, or multiple clients, that can fit your logging requirements.

Implementation

putLumberdashToWork({required List<LumberdashClient> withClients}) {
  _lumberdashClients = withClients;
}