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
Implements
Mixes-in
Annotations

Constants

ANSWER → int

42
THING → dynamic

'yup'

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.

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
hashCode → int

Get a hash code for this object.

read-only, inherited
onlySetter → double

Only a setter, with a single param, of type double.

write-only
powers → List<String>

In the super class.

read / write, inherited
runtimeType → Type

A representation of the runtime type of the object.

read-only, 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

Methods

fly(int height, Cool superCool, { String msg }) → void

In the super class.

inherited
noParams() → void

No params.

noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

inherited
optionalParams(first, { second, int third }) → bool

One dynamic param, two named optionals.

returnString() → String

Returns a single string.

toString() → String

Returns a string representation of this object.

inherited
twoParams(String one, two) → int

Two params, the first has a type annotation, the second does not.