ResourceViewSettings constructor

const ResourceViewSettings({
  1. double size = 75,
  2. int visibleResourceCount = -1,
  3. bool showAvatar = true,
  4. TextStyle? displayNameTextStyle,
})

Creates a resource view settings for calendar.

The properties allows to customize the resource view of SfCalendar.

Implementation

const ResourceViewSettings(
    {this.size = 75,
    this.visibleResourceCount = -1,
    this.showAvatar = true,
    this.displayNameTextStyle})
    : assert(size >= 0),
      assert(visibleResourceCount >= -1);