copyWith method

UnreservedTemplateValue copyWith({
  1. TLVModel? globallyUniqueIdentifier,
  2. List<TLVModel>? contextSpecificData,
})

Implementation

UnreservedTemplateValue copyWith({
  TLVModel? globallyUniqueIdentifier,
  List<TLVModel>? contextSpecificData,
}) =>
    UnreservedTemplateValue(
      globallyUniqueIdentifier:
          globallyUniqueIdentifier ?? this.globallyUniqueIdentifier,
      contextSpecificData: contextSpecificData ?? this.contextSpecificData,
    );