CaptionsStyles.fromJson constructor

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

Implementation

CaptionsStyles.fromJson(Map<String, dynamic> json) {
  this.fontFamily = json["fontFamily"];
  this.fontSize = json["fontSize"];
  this.fontOpacity = json["fontOpacity"];
  this.color = json["color"];
  this.windowColor = json["windowColor"];
  this.edgeStyle = json["edgeStyle"];
  this.bgColor = json["bgColor"];
  this.windowOpacity = json["windowOpacity"];
  this.bgOpacity = json["bgOpacity"];
}