mapFromDatabaseResponse method

  1. @override
Uint8List? mapFromDatabaseResponse(
  1. dynamic response
)
override

Maps the response from sql back to a readable dart type.

Implementation

@override
Uint8List? mapFromDatabaseResponse(dynamic response) {
  if (response is String) {
    final list = response.codeUnits;
    return Uint8List.fromList(list);
  }
  return response as Uint8List?;
}