copyWith method

AppLogsState copyWith({
  1. List<EditorLogEntity>? logs,
})

Implementation

AppLogsState copyWith({
  final List<EditorLogEntity>? logs,
}) {
  return AppLogsState(
    logs: logs ?? this.logs,
  );
}