ULinkResponse constructor

ULinkResponse({
  1. required bool success,
  2. String? url,
  3. String? error,
  4. Map<String, dynamic>? data,
})

Creates a new ULink response

Implementation

ULinkResponse({
  required this.success,
  this.url,
  this.error,
  this.data,
});