FFUploadDataSettings_SourcePickerStyle constructor
FFUploadDataSettings_SourcePickerStyle({})
Implementation
factory FFUploadDataSettings_SourcePickerStyle({
$core.String? fontFamily,
FFColor? textColor,
FFColor? backgroundColor,
}) {
final result = create();
if (fontFamily != null) result.fontFamily = fontFamily;
if (textColor != null) result.textColor = textColor;
if (backgroundColor != null) result.backgroundColor = backgroundColor;
return result;
}