profile property

Profile? profile

Returns a reference to the cash flow profile.

Implementation

Profile? get profile {
  if (_profile == null) {
    throw Exception("The profile has not been initialised yet.");
  }
  return _profile;
}