LoadingDialog constructor

const LoadingDialog({
  1. Key? key,
  2. String message = 'Please Wait',
})

Implementation

const LoadingDialog({Key? key, this.message = 'Please Wait'})
    : super(key: key);