copyWith method

Extensions copyWith({
  1. String? code,
})

Implementation

Extensions copyWith({
  String? code,
}) =>
    Extensions(
      code: code ?? this.code,
    );