Authorized constructor

const Authorized({
  1. required String staker,
  2. required String withdrawer,
})

Implementation

const Authorized({
  required this.staker,
  required this.withdrawer,
});