BalanceSheet class

Balance sheet data for a single period.

Constructors

BalanceSheet({double? totalAssets, double? totalLiabilities, double? stockholdersEquity, double? cashAndEquivalents, double? currentAssets, double? currentLiabilities, double? nonCurrentLiabilities, double? longTermDebt})
const

Properties

cashAndEquivalents double?
Cash and cash equivalents.
final
currentAssets double?
Current assets (assets expected to be sold/used within one year).
final
currentLiabilities double?
Current liabilities (obligations due within one year).
final
currentRatio double?
Current ratio (currentAssets / currentLiabilities).
no setter
debtToEquity double?
Debt to equity ratio (longTermDebt / stockholdersEquity).
no setter
hashCode int
The hash code for this object.
no setterinherited
longTermDebt double?
Long-term debt.
final
nonCurrentLiabilities double?
Non-current liabilities (long-term obligations).
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stockholdersEquity double?
Total stockholders' equity.
final
totalAssets double?
Total assets of the company.
final
totalLiabilities double?
Total liabilities of the company.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited