copyWith method

ModularKey copyWith({
  1. String? schema,
  2. String? name,
})

Implementation

ModularKey copyWith({
  String? schema,
  String? name,
}) {
  return ModularKey(
    schema: schema ?? this.schema,
    name: name ?? this.name,
  );
}