CommunityApp.fromJson constructor

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

Implementation

factory CommunityApp.fromJson(Map<String, dynamic> json) => CommunityApp(
      id: readInt(json["id"]),
      name: json["name"]?.toString() ?? '',
      slug: json["slug"]?.toString() ?? '',
    );