DeeplinklyResult constructor

const DeeplinklyResult({
  1. required bool success,
  2. String? url,
  3. String? errorCode,
  4. String? errorMessage,
})

Implementation

const DeeplinklyResult({
  required this.success,
  this.url,
  this.errorCode,
  this.errorMessage,
});