Input$FontInput constructor

Input$FontInput({
  1. required String name,
  2. String? family,
  3. String? url,
  4. String? preview,
})

Implementation

factory Input$FontInput({
  required String name,
  String? family,
  String? url,
  String? preview,
}) =>
    Input$FontInput._({
      r'name': name,
      if (family != null) r'family': family,
      if (url != null) r'url': url,
      if (preview != null) r'preview': preview,
    });