mergeFrom method

  1. @override
Future<void> mergeFrom(
  1. IPoiholderCollection other
)
override

Implementation

@override
Future<void> mergeFrom(IPoiholderCollection other) async {
  await other.forEach((action) {
    add(action);
  });
}