getPreview method

Future<String?> getPreview(
  1. int elementSize
)

getPreview(Int) takes an Integer that represents the width in screen pixels that the print preview should display as (on the UI).

Implementation

Future<String?> getPreview(int elementSize) {
  throw UnimplementedError(
      'getPreview(int elementSize) has not been implemented.');
}