Unknown constructor

const Unknown({
  1. Key? key,
  2. String? errorMSG = 'Unknown!',
})

Implementation

const Unknown({Key? key, this.errorMSG = 'Unknown!'}) : super(key: key);