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

This commit is contained in:
Chulwoo Park 2020-11-23 05:28:06 +09:00 committed by GitHub
parent cf6c33e58a
commit de56c6ad72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4481,8 +4481,8 @@ class Flex extends MultiChildRenderObjectWidget {
class Row extends Flex {
/// Creates a horizontal array of children.
///
/// The [direction], [mainAxisAlignment], [mainAxisSize],
/// [crossAxisAlignment], and [verticalDirection] arguments must not be null.
/// The [mainAxisAlignment], [mainAxisSize], [crossAxisAlignment], and
/// [verticalDirection] arguments must not be null.
/// If [crossAxisAlignment] is [CrossAxisAlignment.baseline], then
/// [textBaseline] must not be null.
///
@ -4683,8 +4683,8 @@ class Row extends Flex {
class Column extends Flex {
/// Creates a vertical array of children.
///
/// The [direction], [mainAxisAlignment], [mainAxisSize],
/// [crossAxisAlignment], and [verticalDirection] arguments must not be null.
/// The [mainAxisAlignment], [mainAxisSize], [crossAxisAlignment], and
/// [verticalDirection] arguments must not be null.
/// If [crossAxisAlignment] is [CrossAxisAlignment.baseline], then
/// [textBaseline] must not be null.
///