JsonQuotation constructor

const JsonQuotation({
  1. String? leftQuote,
  2. String? rightQuote,
})

Json Quotation

JsonQuotation.arrowQuote arrow quotation <some_key>

JsonQuotation.doubleQuote double quotation "some_key"

JsonQuotation.singleQuote single quotation 'some_key'

JsonQuotation.same left and right quotation are same <leftQuotation>some_key<rightQuotation>

Implementation

const JsonQuotation({
  this.leftQuote,
  this.rightQuote,
});