Quotes constructor

const Quotes(
  1. (String, String) primary, [
  2. (String, String)? secondary
])

Creates a Quotes with the specified primary and optional secondary quotation mark pairs.

Implementation

const factory Quotes(
  (String, String) primary, [
  (String, String)? secondary,
]) = _Quotes;