GitHubRepo class

Constructors

GitHubRepo({required int id, required String name, required String fullName, required GitHubUser owner, required bool private, String? description, required bool fork, required String htmlUrl})
GitHubRepo.fromJson(Map<String, dynamic> json)
factory

Properties

description String?
The textual description of the repo
final
fork bool
Is the repo a fork?
final
fullName String
The full name of the owner + repo, e.g. "Danger/Danger-JS"
final
hashCode int
The hash code for this object.
no setterinherited
htmlUrl String
The root web URL for the repo, e.g. https://github.com/artsy/emission
final
id int
Generic UUID
final
name String
The name of the repo, e.g. "Danger-JS"
final
owner GitHubUser
The owner of the repo
final
private bool
Is the repo publicly accessible?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited