GetFileIconOptions constructor
GetFileIconOptions({
- int? size,
Implementation
GetFileIconOptions(
{
/// The size of the returned icon. The icon will be square with dimensions
/// size * size pixels. The default and largest size for the icon is 32x32
/// pixels. The only supported sizes are 16 and 32. It is an error to
/// specify
/// any other size.
int? size})
: _wrapped = $js.GetFileIconOptions(size: size);