SifliSupportWatchFaceInfo.fromJson constructor

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

Implementation

factory SifliSupportWatchFaceInfo.fromJson(Map<String, dynamic> json) => SifliSupportWatchFaceInfo(
      typeList: List<int>.from((json["typeList"] ?? []).map((x) => x)),
      list: List<SifliWatchFace>.from((json["list"] ?? []).map((x) => SifliWatchFace.fromJson(x))),
    );