blob: 4046216970ed9822fa4455d35f8f9fd48c861bd6 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
class Target {
const Target(this.stringValue, this.intValue, this.targetValue);
final String stringValue;
final int intValue;
final Target targetValue;
void hit() {
print('$stringValue $intValue');
}
}