FFDateTimeFormat constructor

FFDateTimeFormat({
  1. String? format,
  2. bool? abbreviated,
  3. bool? isCustom,
})

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;
}