TopicValue_ constructor

TopicValue_({
  1. String? text,
  2. List<int>? binary,
})

Implementation

factory TopicValue_({
  $core.String? text,
  $core.List<$core.int>? binary,
}) {
  final $result = create();
  if (text != null) {
    $result.text = text;
  }
  if (binary != null) {
    $result.binary = binary;
  }
  return $result;
}