Input$FontInput constructor
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,
});