CustomSchemeResponse constructor

CustomSchemeResponse({
  1. String contentEncoding = 'utf-8',
  2. required String contentType,
  3. required Uint8List data,
})

Implementation

CustomSchemeResponse(
    {this.contentEncoding = 'utf-8',
    required this.contentType,
    required this.data});