Authorized constructor

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

Stake account authority info.

Implementation

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