copyWith method

StartLength copyWith({
  1. int? start,
  2. int? length,
})

Returns a new instance by overriding the values passed as arguments

Implementation

StartLength copyWith({
  int /*U32*/ ? start,
  int /*U32*/ ? length,
}) =>
    StartLength(start: start ?? this.start, length: length ?? this.length);