create<T> static method

ContactValue<T> create<T>({
  1. T? type,
  2. String? description,
  3. String? value,
})

Implementation

static ContactValue<T> create<T>({
  T? type,
  String? description,
  String? value,
}) {
  return ContactValue<T>._(
    key: UniqueKey(),
    type: type,
    description: description,
    value: value ?? '',
  );
}