Input$DocumentInput constructor

Input$DocumentInput({
  1. required String name,
  2. Input$DocumentContentInput? content,
  3. double? size,
  4. String? owner,
})

Implementation

factory Input$DocumentInput({
  required String name,
  Input$DocumentContentInput? content,
  double? size,
  String? owner,
}) =>
    Input$DocumentInput._({
      r'name': name,
      if (content != null) r'content': content,
      if (size != null) r'size': size,
      if (owner != null) r'owner': owner,
    });