toQueryArguments method

Map<String, String> toQueryArguments()

Implementation

Map<String, String> toQueryArguments() {
  return {
    if (width != null) 'w': '$width',
    if (height != null) 'h': '$height',
    if (quality != null) 'q': '$quality',
  };
}