copyWith method

PlutusScript copyWith({
  1. List<int>? bytes,
  2. Language? language,
})

Implementation

PlutusScript copyWith({List<int>? bytes, Language? language}) {
  return PlutusScript(
      bytes: bytes ?? this.bytes, language: language ?? this.language);
}