meetsWCAGAA static method
Implementation
static bool meetsWCAGAA(Color foreground, Color background, {bool isLargeText = false}) {
final ratio = contrastRatio(foreground, background);
return ratio >= (isLargeText ? minContrastLarge : minContrastNormal);
}