GetAttributeResponse constructor

GetAttributeResponse({
  1. String? key,
  2. String? value,
  3. bool? exists,
})

Implementation

factory GetAttributeResponse({
  $core.String? key,
  $core.String? value,
  $core.bool? exists,
}) {
  final result = create();
  if (key != null) result.key = key;
  if (value != null) result.value = value;
  if (exists != null) result.exists = exists;
  return result;
}