copyWith method

KeyFromString copyWith({
  1. String? contents,
})

Implementation

KeyFromString copyWith({
  String? contents
}) {
  return KeyFromString(
    contents ?? this.contents
  );
}