WatchFaceBackgroundBean.fromJson constructor

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

Implementation

factory WatchFaceBackgroundBean.fromJson(Map<String, dynamic> json) => WatchFaceBackgroundBean(
      bitmap: json["bitmap"],
      thumbBitmap: json["thumbBitmap"],
      type: json["type"],
      thumbWidth: json["thumbWidth"],
      thumbHeight: json["thumbHeight"],
      width: json["width"],
      height: json["height"],
    );