FileNotFoundException constructor

FileNotFoundException({
  1. required String message,
  2. StackTrace? stackTrace,
})

Implementation

FileNotFoundException({
  required this.message,
  this.stackTrace,
});