withdrawal method

Implementation

Future<MixinResponse<Snapshot>> withdrawal(WithdrawalRequest request) =>
    MixinResponse.request<Snapshot>(
      dio.post('/withdrawals', data: request),
      Snapshot.fromJson,
    );