copyWith method

Contact copyWith({
  1. String? email,
})

Implementation

Contact copyWith({
  String? email,
}) =>
    Contact(
      email: email ?? this.email,
    );