EmphasisMeta.fromJson constructor

EmphasisMeta.fromJson(
  1. Map<String, dynamic> json
)

Creates from JSON map.

Implementation

factory EmphasisMeta.fromJson(Map<String, dynamic> json) {
  return EmphasisMeta(
    style: json['style'] as String?,
  );
}