GeneratedClientSchemaMismatchException constructor

const GeneratedClientSchemaMismatchException({
  1. required String outputPath,
  2. required String diff,
})

Creates a schema-mismatch error for a stale generated client file.

Implementation

const GeneratedClientSchemaMismatchException({
  required this.outputPath,
  required this.diff,
});