GitRemote constructor

const GitRemote({
  1. required String name,
  2. required String fetchUrl,
  3. required String pushUrl,
})

Implementation

const GitRemote({
  required this.name,
  required this.fetchUrl,
  required this.pushUrl,
});