This is a very long line spread across... wait for it... two physical lines.
The rest of this is not in the first paragraph.
- Inheritance
- Object
- SuperAwesomeClass
- LongFirstLine
- Implements
- Mixes-in
- Annotations
- @Annotation('value')
Constructors
- LongFirstLine()
-
The default constructor.
- LongFirstLine.fromHasGenerics(HasGenerics hg)
- LongFirstLine.fromMap(Map data)
-
Named constructors are awesome.
Properties
- aStringProperty → String
-
An instance string property. Readable and writable.
read / write - dynamicGetter → dynamic
-
Dynamic getter. Readable only.
read-only - onlySetter → double
-
Only a setter, with a single param, of type double.
write-only - hashCode → int
-
The hash code for this object.
read-only, inherited - powers → List<String>
-
In the super class.
read / write, inherited - runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
noParams(
) → void -
No params.
-
optionalParams(
first, { second, int third }) → bool -
One dynamic param, two named optionals.
-
returnString(
) → String -
Returns a single string.
-
twoParams(
String one, two) → int -
Two params, the first has a type annotation, the second does not.
-
fly(
int height, Cool superCool, { String msg }) → void -
In the super class.
inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited -
toString(
) → String -
Returns a string representation of this object.
inherited
Operators
-
operator *(
LongFirstLine other) → LongFirstLine -
Multiplies a thingies to this thingie and then returns a new thingie.
-
operator +(
LongFirstLine other) → LongFirstLine -
Adds another one of these thingies.
-
operator -(
other) → SuperAwesomeClass -
inherited
-
operator ==(
other) → bool -
The equality operator.
inherited
Static Properties
- meaningOfLife → int
-
A static int property.
read / write - staticGetter → int
-
read-only
- staticOnlySetter → bool
-
write-only
Static Methods
-
staticMethodNoParams(
) → int -
Just a static method with no parameters.
-
staticMethodReturnsVoid(
dynamicThing) → void -
A static method that takes a single dynamic thing, and returns void.