FailedRequestDetails constructor

FailedRequestDetails(
  1. String entityId,
  2. String delegateId,
  3. bool updatedForMigration,
  4. bool shouldRetry, {
  5. int? code,
  6. String? reason,
  7. DelegateShareOptions? request,
})

Implementation

FailedRequestDetails(
	this.entityId,
	this.delegateId,
	this.updatedForMigration,
	this.shouldRetry,
	{
		int? code,
		this.reason,
		this.request
	}) : _code = code;