coverFitting method

Future<Image?> coverFitting(
  1. ImageSize maxSize
)

Returns the publication cover as a Bitmap, scaled down to fit the given maxSize.

Implementation

Future<Image?> coverFitting(ImageSize maxSize) async =>
    cover().then((value) => value?.let((it) => copyResize(it,
        width: maxSize.width.toInt(), height: maxSize.height.toInt())));