copyWith method

AddGroupBean copyWith({
  1. String? name,
})

Implementation

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