FFDateTimeFormat constructor
Implementation
factory FFDateTimeFormat({
$core.String? format,
$core.bool? abbreviated,
$core.bool? isCustom,
}) {
final result = create();
if (format != null) result.format = format;
if (abbreviated != null) result.abbreviated = abbreviated;
if (isCustom != null) result.isCustom = isCustom;
return result;
}