Profile constructor

Profile({
  1. required String name,
  2. bool useCustomWarmUp = false,
})

Creates an empty profile.

name and useCustomWarmUp must not be null.

Implementation

Profile({required this.name, this.useCustomWarmUp = false})
    : _isWarmingUp = useCustomWarmUp;