Field.newLongField constructor

const Field.newLongField(
  1. String name
)

Creates an attribute that contains long values.

(Note: this type matches with long on Java which can contain 64 bits. Dart's integer values are already 64 bits instead of Java's 32 bits.)

Implementation

const Field.newLongField(this.name)
    : format = FORMAT_LONG,
      isOptional = false;