RegistryRepositoryPage.fromJson constructor

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

Implementation

factory RegistryRepositoryPage.fromJson(Map<String, dynamic> json) =>
    RegistryRepositoryPage(repositories: (json['repositories'] as List).cast<String>(), nextLast: json['next_last'] as String?);