textTrimTop function
Implementation
TextTrimTop textTrimTop(int packed) {
final index = (packed >> textTrimTopShift) & textTrimFieldMask;
return index < TextTrimTop.values.length
? TextTrimTop.values[index]
: TextTrimTop.none;
}
TextTrimTop textTrimTop(int packed) {
final index = (packed >> textTrimTopShift) & textTrimFieldMask;
return index < TextTrimTop.values.length
? TextTrimTop.values[index]
: TextTrimTop.none;
}