copyWith method

InspectorFrame copyWith({
  1. required Object? value,
  2. bool? lazy,
})

Copy with

Implementation

InspectorFrame copyWith({required Object? value, bool? lazy}) =>
    InspectorFrame(
      key: key,
      value: value,
      lazy: lazy ?? this.lazy,
      deleted: deleted,
    );