Creates a new MarkdownStyleRaw based on the current style, with the provided parameters overridden.
Source
MarkdownStyleRaw copyWith({ TextStyle a, TextStyle p, TextStyle code, TextStyle h1, TextStyle h2, TextStyle h3, TextStyle h4, TextStyle h5, TextStyle h6, TextStyle em, TextStyle strong, TextStyle blockquote, double blockSpacing, double listIndent, double blockquotePadding, BoxDecoration blockquoteDecoration, double codeblockPadding, BoxDecoration codeblockDecoration }) { return new MarkdownStyleRaw( a: a != null ? a : this.a, p: p != null ? p : this.p, code: code != null ? code : this.code, h1: h1 != null ? h1 : this.h1, h2: h2 != null ? h2 : this.h2, h3: h3 != null ? h3 : this.h3, h4: h4 != null ? h4 : this.h4, h5: h5 != null ? h5 : this.h5, h6: h6 != null ? h6 : this.h6, em: em != null ? em : this.em, strong: strong != null ? strong : this.strong, blockquote: blockquote != null ? blockquote : this.blockquote, blockSpacing: blockSpacing != null ? blockSpacing : this.blockSpacing, listIndent: listIndent != null ? listIndent : this.listIndent, blockquotePadding: blockquotePadding != null ? blockquotePadding : this.blockquotePadding, blockquoteDecoration: blockquoteDecoration != null ? blockquoteDecoration : this.blockquoteDecoration, codeblockPadding: codeblockPadding != null ? codeblockPadding : this.codeblockPadding, codeblockDecoration: codeblockDecoration != null ? codeblockDecoration : this.codeblockDecoration ); }