FFUploadDataSettings_SourcePickerStyle constructor

FFUploadDataSettings_SourcePickerStyle({
  1. String? fontFamily,
  2. FFColor? textColor,
  3. FFColor? backgroundColor,
})

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;
}