WatchFaceStoreTagListResult.fromJson constructor

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

Implementation

factory WatchFaceStoreTagListResult.fromJson(Map<String, dynamic> json) => WatchFaceStoreTagListResult(
      list: List<WatchFaceStoreTagInfo>.from((json["list"] ?? []).map((x) => WatchFaceStoreTagInfo.fromJson(x))),
      error: json["error"] ?? "",
    );