WatchFaceBackgroundBean.fromJson constructor
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"],
);