ProtoFlipKey_Data constructor

ProtoFlipKey_Data({
  1. List<int>? key,
  2. int? epoch,
})

Implementation

factory ProtoFlipKey_Data({
  $core.List<$core.int>? key,
  $core.int? epoch,
}) {
  final _result = create();
  if (key != null) {
    _result.key = key;
  }
  if (epoch != null) {
    _result.epoch = epoch;
  }
  return _result;
}