LeaveMsgProvider constructor

const LeaveMsgProvider({
  1. Key? key,
  2. @required String? wid,
  3. @required String? aid,
  4. @required String? type,
  5. @required String? tip,
})

Implementation

const LeaveMsgProvider(
    {Key? key,
    @required this.wid,
    @required this.aid,
    @required this.type,
    @required this.tip})
    : super(key: key);