Input$DocumentContentInput constructor

Input$DocumentContentInput({
  1. String? type,
  2. String? base64,
  3. String? url,
})

Implementation

factory Input$DocumentContentInput({
  String? type,
  String? base64,
  String? url,
}) =>
    Input$DocumentContentInput._({
      if (type != null) r'type': type,
      if (base64 != null) r'base64': base64,
      if (url != null) r'url': url,
    });