fromJson static method

FlexiDate2? fromJson(
  1. dynamic json
)

Implementation

static FlexiDate2? fromJson(json) {
  if (json == null) return null;
  return FlexiDate2.from(json);
}