WatchFaceStoreTypeBean.fromJson constructor

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

Implementation

factory WatchFaceStoreTypeBean.fromJson(Map<String, dynamic> json) => WatchFaceStoreTypeBean(
      storeType: json["storeType"],
      id: json["id"],
      typeList: json["typeList"],
      firmwareVersion: json["firmwareVersion"],
      apiVersion: json["apiVersion"],
      feature: json["feature"],
      maxSize: json["maxSize"],
    );