TalkerJsonFormatter constructor

const TalkerJsonFormatter({
  1. bool stripQuotes = false,
})

Creates a formatter with optional quote stripping.

If stripQuotes is true, double quotes will be stripped from the JSON output (except escaped quotes within values).

Implementation

const TalkerJsonFormatter({this.stripQuotes = false})
    : _customFormatter = null;