copyWith method

AGMLLocalFeatureLayer copyWith({
  1. String? id,
  2. String? path,
  3. AGMLViewPoint? viewPoint,
})

Implementation

AGMLLocalFeatureLayer copyWith({
  String? id,
  String? path,
  AGMLViewPoint? viewPoint
}) => AGMLLocalFeatureLayer(
  id: id ?? this.id,
  path: path ?? this.path,
  viewPoint: viewPoint ?? viewPoint
);