File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -1520,6 +1520,11 @@ class _ImageInfo {
1520
1520
///
1521
1521
/// To draw an [Image] , use one of the methods on the [Canvas] class, such as
1522
1522
/// [Canvas.drawImage] .
1523
+ ///
1524
+ /// See also:
1525
+ ///
1526
+ /// * [Image] , the class in the [widgets] library that encapsulates this class.
1527
+ ///
1523
1528
@pragma ('vm:entry-point' )
1524
1529
class Image extends NativeFieldWrapperClass2 {
1525
1530
// This class is created by the engine, and should not be instantiated
@@ -2678,6 +2683,11 @@ Float32List _encodeTwoPoints(Offset pointA, Offset pointB) {
2678
2683
///
2679
2684
/// There are several types of gradients, represented by the various constructors
2680
2685
/// on this class.
2686
+ ///
2687
+ /// See also:
2688
+ ///
2689
+ /// * [Gradient] , the class in the [painting] library that encapsulates this class.
2690
+ ///
2681
2691
class Gradient extends Shader {
2682
2692
2683
2693
void _constructor () native 'Gradient_constructor' ;
Original file line number Diff line number Diff line change @@ -352,6 +352,11 @@ Int32List _encodeTextStyle(
352
352
}
353
353
354
354
/// An opaque object that determines the size, position, and rendering of text.
355
+ ///
356
+ /// See also:
357
+ ///
358
+ /// * [TextStyle] , the class in the [painting] library that encapsulates this class.
359
+ ///
355
360
class TextStyle {
356
361
/// Creates a new TextStyle object.
357
362
///
@@ -792,6 +797,10 @@ ByteData _encodeStrut(
792
797
return ByteData .view (data.buffer, 0 , byteCount);
793
798
}
794
799
800
+ /// See also:
801
+ ///
802
+ /// * [StrutStyle] , the class in the [painting] library that encapsulates this class.
803
+ ///
795
804
class StrutStyle {
796
805
/// Creates a new StrutStyle object.
797
806
///
You can’t perform that action at this time.
0 commit comments