WatchFaceBean.fromJson constructor

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

Implementation

factory WatchFaceBean.fromJson(Map<String, dynamic> json) => WatchFaceBean(
      id: json["id"] ?? -1,
      preview: json["preview"] ?? "",
      file: json["file"] ?? "",
    );