LongFirstLine class
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
-
read-only, inherited
- powers ↔ List<String>
-
In the super class.
read / write, inherited
- runtimeType → Type
-
read-only, inherited
Methods
-
noParams(
) → void - No params.
-
optionalParams(
dynamic first, { dynamic second, int third }) → bool - One dynamic param, two named optionals.
-
returnString(
) → String - Returns a single string.
-
twoParams(
String one, dynamic 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 -
inherited
-
toString(
) → String -
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 -(
dynamic other) → SuperAwesomeClass -
inherited
-
operator ==(
dynamic other) → bool -
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(
dynamic dynamicThing) → void - A static method that takes a single dynamic thing, and returns void.