copyWithOne method

AFComponentState copyWithOne(
  1. Object toIntegrate
)
inherited

Implementation

AFComponentState copyWithOne(Object toIntegrate) {
  final toI = <Object>[];
  toI.add(toIntegrate);
  return copyWith(toI);
}