ReposUrl.fromJson constructor
Implementation
factory ReposUrl.fromJson(Map<String, dynamic> json) => ReposUrl(
github: List<String>.from(json["github"].map((x) => x)),
bitbucket: List<dynamic>.from(json["bitbucket"].map((x) => x)),
);