QuoteBlock.fromJson constructor

QuoteBlock.fromJson(
  1. Map<String, Object?> j
)

Implementation

factory QuoteBlock.fromJson(Map<String, Object?> j) =>
    QuoteBlock((j['text'] as String?) ?? '', cite: j['cite'] as String?);