contentPadding property

EdgeInsets contentPadding
final

The padding for the TypeSelector. The default value is:

EdgeInsets.all(8.0);

/// Example of usage:

TypeSelector(
  contentPadding: EdgeInsets.symmetric(horizontal: 8.0),
  // other properties
);

Implementation

final EdgeInsets contentPadding;