Hold constructor

const Hold({
  1. bool status = false,
  2. List details = const [],
})

Implementation

const Hold({
  this.status = false,
  this.details = const [],
});