Post constructor
Post({})
Implementation
Post(
{String? key,
String? formKey,
int? status,
String? title,
int? date,
int? attempts,
String? method,
Map<String, String>? headers,
String? format,
String? url,
String? body,
String? info}) {
_map["key"] = key ?? newId();
_map["formKey"] = formKey;
_map["status"] = status;
_map["title"] = title;
_map["date"] = date;
_map["attempts"] = attempts;
_map["method"] = method;
_map["format"] = format;
_map["url"] = url;
_map["body"] = body;
_map["info"] = info;
_map["headers"] = headers;
}