DateResult<StringType> constructor

DateResult<StringType>(
  1. Map<String, dynamic> nativeDateResult
)

Implementation

DateResult(Map<String, dynamic> nativeDateResult)
  : day = nativeDateResult["day"],
    month = nativeDateResult["month"],
    year = nativeDateResult["year"],
    originalString = nativeDateResult["originalString"],
    filledByDomainKnowledge =
        nativeDateResult["filledByDomainKnowledge"] ?? false,
    successfullyParsed = nativeDateResult["successfullyParsed"] ?? true;