PayloadRepository constructor

PayloadRepository(
  1. Map innerMap, {
  2. String? fullName,
  3. required String name,
  4. required Owner owner,
  5. String? htmlUrl,
})

Constructs a new instance of the PayloadRepository class.

Implementation

PayloadRepository(
  super.innerMap, {
  this.fullName,
  required this.name,
  required this.owner,
  this.htmlUrl,
});