RequestAction.fromMap constructor
Implementation
factory RequestAction.fromMap(Map<String, dynamic> map) {
return RequestAction(
endpoint: map['endpoint'],
method: map['method'],
deleteKey: map['deleteKey'],
payload: map['payload'],
);
}