Unverified Commit de56c6ad authored by Chulwoo Park's avatar Chulwoo Park Committed by GitHub

Remove unnecessary argument from Row and Column constructor comments (#71041)

parent cf6c33e5
...@@ -4481,8 +4481,8 @@ class Flex extends MultiChildRenderObjectWidget { ...@@ -4481,8 +4481,8 @@ class Flex extends MultiChildRenderObjectWidget {
class Row extends Flex { class Row extends Flex {
/// Creates a horizontal array of children. /// Creates a horizontal array of children.
/// ///
/// The [direction], [mainAxisAlignment], [mainAxisSize], /// The [mainAxisAlignment], [mainAxisSize], [crossAxisAlignment], and
/// [crossAxisAlignment], and [verticalDirection] arguments must not be null. /// [verticalDirection] arguments must not be null.
/// If [crossAxisAlignment] is [CrossAxisAlignment.baseline], then /// If [crossAxisAlignment] is [CrossAxisAlignment.baseline], then
/// [textBaseline] must not be null. /// [textBaseline] must not be null.
/// ///
...@@ -4683,8 +4683,8 @@ class Row extends Flex { ...@@ -4683,8 +4683,8 @@ class Row extends Flex {
class Column extends Flex { class Column extends Flex {
/// Creates a vertical array of children. /// Creates a vertical array of children.
/// ///
/// The [direction], [mainAxisAlignment], [mainAxisSize], /// The [mainAxisAlignment], [mainAxisSize], [crossAxisAlignment], and
/// [crossAxisAlignment], and [verticalDirection] arguments must not be null. /// [verticalDirection] arguments must not be null.
/// If [crossAxisAlignment] is [CrossAxisAlignment.baseline], then /// If [crossAxisAlignment] is [CrossAxisAlignment.baseline], then
/// [textBaseline] must not be null. /// [textBaseline] must not be null.
/// ///
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment