WatchFaceIdBean.fromJson constructor

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

Implementation

factory WatchFaceIdBean.fromJson(Map<String, dynamic> json) =>
    WatchFaceIdBean(
      watchFace: WatchFace.fromJson(json["watchFace"]),
      error: json["error"],
      code: json["code"],
    );