CFieldStyle.simple constructor

CFieldStyle.simple({
  1. Color? foregroundColor,
})

Creates a simple field style.

Implementation

factory CFieldStyle.simple({
  Color? foregroundColor,
}) {
  return CFieldStyle(
    foregroundColor: foregroundColor,
  );
}