ContainerUlimit constructor

const ContainerUlimit({
  1. String? name,
  2. int? soft,
  3. int? hard,
})

Creates a ContainerUlimit with the given fields.

Implementation

const ContainerUlimit({this.name, this.soft, this.hard});