CreateBlogResponse.fromJson constructor
Implementation
factory CreateBlogResponse.fromJson(Map<String, dynamic> json) => CreateBlogResponse(
ok: json["ok"],
activityState: json["activity_state"],
activityPoints: json["activity_points"],
message: json["message"],
executionError: json["execution_error"],
object: CreateBlogObject.fromJson(json["object"]),
);