CommunityApp.fromJson constructor

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

Implementation

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