Response constructor

const Response({
  1. required Gateway gateway,
  2. required PhoneNumber to,
  3. required bool success,
  4. required Response response,
})

Implementation

const Response({
  required this.gateway,
  required this.to,
  required this.success,
  required this.response,
});