copyWith method

JsonMapRef copyWith({
  1. int? index_,
})

Returns a new instance by overriding the values passed as arguments

Implementation

JsonMapRef copyWith({
  int /*U32*/ ? index_,
}) =>
    JsonMapRef(index_: index_ ?? this.index_);