PrLink constructor

const PrLink({
  1. required int prNumber,
  2. required String prUrl,
  3. required String prRepository,
  4. required String timestamp,
})

Implementation

const PrLink({
  required this.prNumber,
  required this.prUrl,
  required this.prRepository,
  required this.timestamp,
});