EbuTtDDestinationSettings.fromJson constructor

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

Implementation

factory EbuTtDDestinationSettings.fromJson(Map<String, dynamic> json) {
  return EbuTtDDestinationSettings(
    fillLineGap:
        (json['fillLineGap'] as String?)?.toEbuTtDFillLineGapControl(),
    fontFamily: json['fontFamily'] as String?,
    styleControl:
        (json['styleControl'] as String?)?.toEbuTtDDestinationStyleControl(),
  );
}