copyWith method

GlobalScopeBean copyWith({
  1. List<GlobalScopeBeanAttributes>? attributes,
})

Implementation

GlobalScopeBean copyWith({List<GlobalScopeBeanAttributes>? attributes}) {
  return GlobalScopeBean(
    attributes: attributes ?? this.attributes,
  );
}