resolveGap static method
Implementation
static CSSLengthValue resolveGap(String gap, {RenderStyle? renderStyle}) {
if (gap == 'normal') {
return CSSLengthValue.normal;
}
return CSSLength.parseLength(gap, renderStyle) ?? CSSLengthValue.normal;
}