WatchFaceLayoutBean.fromJson constructor

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

Implementation

factory WatchFaceLayoutBean.fromJson(Map<String, dynamic> json) =>
    WatchFaceLayoutBean(
      backgroundPictureMd5: json["backgroundPictureMd5"],
      compressionType: json["compressionType"],
      height: json["height"],
      textColor: json["textColor"],
      thumHeight: json["thumHeight"],
      thumWidth: json["thumWidth"],
      timeBottomContent: json["timeBottomContent"],
      timePosition: json["timePosition"],
      timeTopContent: json["timeTopContent"],
      width: json["width"],
    );