showLeaveMessageHistory static method

void showLeaveMessageHistory(
  1. BuildContext context,
  2. String wid,
  3. String aid,
  4. String type,
)

Implementation

static void showLeaveMessageHistory(
    BuildContext context, String wid, String aid, String type) {
  Navigator.of(context).push(MaterialPageRoute(builder: (context) {
    return LeaveMsgHistoryProvider(
      wid: wid,
      aid: aid,
      type: type,
    );
  }));
}