getImageFills method

Future<ImageResponse> getImageFills(
  1. String? key
)

Retrieves the image fills specified.

Implementation

Future<ImageResponse> getImageFills(String? key) async =>
    await _getFigma('/files/$key/images')
        .then((data) => ImageResponse.fromJson(data));