PaginatedVideos.fromString constructor

PaginatedVideos.fromString(
  1. String json
)

Creates a paginated list of VideoFulls from a JSON string.

Implementation

factory PaginatedVideos.fromString(
  String json,
) =>
    PaginatedVideos.fromJson(jsonDecode(json));