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',
    if (blur != null) 'b': '$blur',
    if (cornerRadius != null) 'r': cornerRadius!.toQueryValue(),
  };
}