FirebaseDatabaseException constructor

FirebaseDatabaseException({
  1. required String code,
  2. String? message,
  3. String? details,
})

Implementation

FirebaseDatabaseException(
    {required String code, String? message, this.details})
    : super(plugin: 'database', code: code, message: message);