get method

  1. @Deprecated('Please use the specific property for the field number')
List<int>? get(
  1. int field
)

Gets a data element for index.

Implementation

@Deprecated('Please use the specific property for the field number')
List<int>? get(int field) {
  return _data[field];
}