BeaconRequest constructor

BeaconRequest({
  1. RequestType? type,
  2. Request? request,
  3. List<OperationDetails>? operationDetails,
  4. P2PPeer? peer,
})

Constructor for creating BeaconRequest object.

Implementation

BeaconRequest({
  this.type,
  this.request,

  /// [Request.operation] extra fields
  this.operationDetails,

  /// [Request.permission] extra fields
  this.peer,
});