NoDataPage constructor

const NoDataPage({
  1. Key? key,
  2. String text = "NO REFERRALS AVAILABLE CURRENTLY",
})

Implementation

const NoDataPage({
  super.key,
  this.text = "NO REFERRALS AVAILABLE CURRENTLY",
});