LinuxRawIconData constructor
LinuxRawIconData({})
Constructs an instance of LinuxRawIconData.
Implementation
LinuxRawIconData({
required this.data,
required this.width,
required this.height,
int? rowStride,
this.bitsPerSample = 8,
this.channels = 3,
this.hasAlpha = false,
}) : rowStride = rowStride ?? ((width * channels * bitsPerSample) / 8).ceil();